-
Notifications
You must be signed in to change notification settings - Fork 229
67 lines (50 loc) · 1.63 KB
/
windows.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Windows
on:
push:
paths-ignore:
- 'README.md'
- 'doc/**'
pull_request:
paths-ignore:
- 'README.md'
- 'doc/**'
jobs:
windows-msvc:
strategy:
fail-fast: false
matrix:
build_type: [Debug, Release]
os: [windows-2022, windows-2019]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Configure Visual Studio Environment
uses: ilammy/msvc-dev-cmd@v1.13.0
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@v4
- name: Configure CMake
run: cmake ${{ github.workspace }} -G "Ninja" -B build
- name: Build project
run: cmake --build ${{ github.workspace }}\build --config ${{ matrix.build_type }}
- name: Run tests
working-directory: ${{ github.workspace }}\build
run: ctest -C ${{ matrix.build_type }} --output-on-failure
windows-clang:
strategy:
fail-fast: false
matrix:
build_type: [Debug, Release]
os: [windows-2022, windows-2019]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Configure Visual Studio Environment
uses: ilammy/msvc-dev-cmd@v1.13.0
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@v4
- name: Configure CMake
run: cmake -S ${{ github.workspace }} -B build -G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl
- name: Build project
run: cmake --build ${{ github.workspace }}\build --config ${{ matrix.build_type }}
- working-directory: ${{ github.workspace }}\build
run: ctest -C ${{ matrix.build_type }} --output-on-failure