-
Notifications
You must be signed in to change notification settings - Fork 10
102 lines (85 loc) · 2.83 KB
/
ci-linux.yml
File metadata and controls
102 lines (85 loc) · 2.83 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
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
99
100
101
102
name: ci-linux
on:
push:
tags-ignore:
- v*.*
branches:
- '*'
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# GCC Debug
- name: gcc-debug
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
# GCC Release
- name: gcc-release
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
# Clang Debug
- name: clang-debug
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
# Clang Release
- name: clang-release
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
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2.13.0
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 dependencies
run: sudo apt-get update -qq && sudo apt-get install -yqq --no-install-recommends ninja-build
- name: Configure
run: cmake --preset="${{ matrix.configurePreset }}" -DCCMATH_ENABLE_AGGRESSIVE_WARNINGS=ON -DCCMATH_ENABLE_WARNINGS_AS_ERRORS=ON
- name: Build
run: cmake --build --preset="${{ matrix.buildPreset }}"
- name: Test
run: ctest --preset="${{ matrix.testPreset }}" --output-on-failure --schedule-random -F