-
Notifications
You must be signed in to change notification settings - Fork 34
55 lines (50 loc) · 1.01 KB
/
cmake_check.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
name: CMake compatibility check
on:
workflow_dispatch:
jobs:
check:
strategy:
fail-fast: false
matrix:
cmake_ver:
- 3.29.1
- 3.28.4
- 3.27.7
- 3.26.5
- 3.25.3
- 3.24.4
- 3.23.5
- 3.22.6
- 3.21.7
- 3.20.6
- 3.19.8
- 3.18.6
- 3.17.5
# - 3.16.9
# - 3.15.7
# - 3.14.7
# - 3.13.5
# - 3.12.4
# - 3.11.4
# - 3.10.3
# - 3.9.6
# - 3.8.2
# - 3.7.2
# - 3.6.3
# - 3.5.2
# - 3.4.3
# - 3.3.2
# - 3.2.3
# - 3.1.3
# - 3.0.2
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: ${{ matrix.cmake_ver }}
ninjaVersion: latest
- name: Check cmake invocation
run: |
mkdir build
cmake -S . -B build -G Ninja