-
Notifications
You must be signed in to change notification settings - Fork 10
98 lines (81 loc) · 2.65 KB
/
ci-macos.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: ci-macos
on:
push:
tags-ignore:
- v*.*
branches:
- '*'
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
build:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
include:
- name: clang-debug-cxx17
configurePreset: ninja-clang-debug
buildPreset: build-ninja-clang-debug
testPreset: test-ninja-clang-debug
cxx_version: 17
- name: clang-debug-cxx20
configurePreset: ninja-clang-debug
buildPreset: build-ninja-clang-debug
testPreset: test-ninja-clang-debug
cxx_version: 20
- name: clang-release-cxx17
configurePreset: ninja-clang-release
buildPreset: build-ninja-clang-release
testPreset: test-ninja-clang-release
cxx_version: 17
- name: clang-release-cxx20
configurePreset: ninja-clang-release
buildPreset: build-ninja-clang-release
testPreset: test-ninja-clang-release
cxx_version: 20
- name: gcc-debug-cxx17
configurePreset: ninja-gcc-debug
buildPreset: build-ninja-gcc-debug
testPreset: test-ninja-gcc-debug
cxx_version: 17
- name: gcc-debug-cxx20
configurePreset: ninja-gcc-debug
buildPreset: build-ninja-gcc-debug
testPreset: test-ninja-gcc-debug
cxx_version: 20
- name: gcc-release-cxx17
configurePreset: ninja-gcc-release
buildPreset: build-ninja-gcc-release
testPreset: test-ninja-gcc-release
cxx_version: 17
- name: gcc-release-cxx20
configurePreset: ninja-gcc-release
buildPreset: build-ninja-gcc-release
testPreset: test-ninja-gcc-release
cxx_version: 20
steps:
- name: Harden Runner
uses: step-security/[email protected]
with:
egress-policy: audit
- uses: actions/checkout@v4
- name: Cache build
uses: actions/cache@v4
with:
path: |
./**/CMakeFiles
./**/CMakeCache.txt
./**/out
key: ${{ runner.os }}-${{ matrix.name }}
- name: Install Ninja
run: brew install ninja
- name: Configure
run: cmake --preset="${{ matrix.configurePreset }}" -DCMAKE_CXX_STANDARD="${{ matrix.cxx_version }}"
- name: Build
run: cmake --build --preset="${{ matrix.buildPreset }}"
- name: Test
run: ctest --preset="${{ matrix.testPreset }}" --output-on-failure --schedule-random -F