forked from boostorg/multiprecision
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 884 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
env:
PRINCIPIA_HEADERS_MULTIPRECISION: include
PRINCIPIA_MSVC_MULTIPRECISION: none
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
configuration: [Debug, Release]
steps:
- name: Checkout source files
uses: actions/checkout@v4
- name: Initialize build environment
uses: mockingbirdnest/actions/windows/initialize_build@main
with:
configuration: ${{ matrix.configuration }}
- name: Upload artifact
uses: mockingbirdnest/actions/windows/upload_artifact@main
with:
name: multiprecision
configuration: ${{ matrix.configuration }}
headers_directory: ${{ env.PRINCIPIA_HEADERS_MULTIPRECISION }}
solution_directory: ${{ env.PRINCIPIA_MSVC_MULTIPRECISION }}