-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (45 loc) · 1.53 KB
/
build.yml
File metadata and controls
52 lines (45 loc) · 1.53 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Build
on:
push:
branches:
- "**"
pull_request:
jobs:
build-and-test:
name: Build & Test Project
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
preset: [windows-debug, windows-release, linux-debug, linux-release]
exclude:
- os: ubuntu-latest
preset: windows-debug
- os: ubuntu-latest
preset: windows-release
- os: windows-latest
preset: linux-debug
- os: windows-latest
preset: linux-release
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
with:
submodules: recursive
- name: Install CMake
uses: ssrobins/install-cmake@v1
with:
version: 4.2.2
- name: Install VS 18 2026 Build tools (Windows only)
if: runner.os == 'Windows'
uses: k3DW/setup-msvc@v1
with:
vs-version: "18.2.1"
- name: Build & Test Project
run: cmake --workflow --preset workflow-${{ matrix.preset }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: digraph-${{ matrix.preset }}-${{ github.sha }}
path: build/conf-${{ matrix.preset }}/bin/