-
Notifications
You must be signed in to change notification settings - Fork 56
200 lines (191 loc) · 6.91 KB
/
linux.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
---
name: Linux
on:
push:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/linux.yml'
pull_request:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/linux.yml'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
gcc:
runs-on: ubuntu-latest
name: gcc${{ matrix.version }} (c++${{ matrix.standard }})
container: flagarde/ci-ubuntu-gcc-${{ matrix.version }}-x86_64:latest
strategy:
fail-fast: false
matrix:
# Before 4.7 there is no Non-static data member initializers that's bad!
version: [ 4.7, 4.8, 4.9, 5, 6, 7, 8, 9, 10, 11, 12, 13 ]
standard: [ 11, 14, 17, 20 ]
exclude:
# 4.6
- version: 4.6
standard: 14
- version: 4.6
standard: 17
- version: 4.6
standard: 20
# 4.7
- version: 4.7
standard: 14
- version: 4.7
standard: 17
- version: 4.7
standard: 20
# 4.8
- version: 4.8
standard: 17
- version: 4.8
standard: 20
# 4.9
- version: 4.9
standard: 17
- version: 4.9
standard: 20
# 5
- version: 5
standard: 20
# 6
- version: 6
standard: 20
# 7
- version: 7
standard: 20
steps:
- uses: ammaraskar/gcc-problem-matcher@master
- name: ⬇️ Install git
run: apt-get update ; apt-get install --no-install-recommends -y git unzip
- name: ⬇️ Setup CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: ^3
ninjaVersion: ^1.11.1
- name: 📥 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 📂 Load .env file
if: hashFiles('.github/workflows/.env') != ''
uses: xom9ikk/dotenv@v2
with:
path: .github/workflows
- name: 🔧 Configure
run: cmake -S ${{ env.CMAKE_SOURCE_PREFIX }} -B ${{ env.CMAKE_BINARY_PREFIX }} -D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -D CMAKE_CXX_STANDARD=${{ matrix.standard }} -D CMAKE_INSTALL_PREFIX=${{ env.CMAKE_INSTALL_PREFIX }} -D CPPTERMINAL_ENABLE_DOCS=OFF
- name: ⚙️ Build
run: cmake --build ${{ env.CMAKE_BINARY_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }} --parallel ${{ env.CMAKE_NUMBER_JOBS }}
- name: 🧪 Test
run: ctest --test-dir ${{ env.CMAKE_BINARY_PREFIX }} -C ${{ env.CMAKE_BUILD_TYPE }} --output-on-failure
- name: 🎉 Install
run: cmake --install ${{ env.CMAKE_BINARY_PREFIX }} --prefix ${{ env.CMAKE_INSTALL_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }}
clang:
runs-on: ubuntu-latest
name: clang${{ matrix.version }} (c++${{ matrix.standard }})
container: flagarde/ci-ubuntu-clang-${{ matrix.version }}-x86_64:latest
strategy:
fail-fast: false
matrix:
version: [ 3.5, 3.6, 3.7, 3.8, 3.9, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 ]
standard: [ 11, 14, 17, 20 ]
exclude:
# 3.5
# 3.5 is buggy with c++14,c++17, skip it for now
- version: 3.5
standard: 20
- version: 3.5
standard: 17
- version: 3.5
standard: 14
# 3.6
- version: 3.6
standard: 20
# 3.7
- version: 3.7
standard: 20
# 3.8
- version: 3.8
standard: 20
# 3.9
- version: 3.9
standard: 20
# 3.9
- version: 4
standard: 20
# 6 has problem
- version: 6
standard: 20
# 7 has problem
- version: 7
standard: 20
# 14 has problem too ?!?
- version: 14
standard: 20
steps:
- uses: ammaraskar/gcc-problem-matcher@master
- name: ⬇️ Install git
run: apt-get update ; apt-get install --no-install-recommends -y git unzip
- name: ⬇️ Setup CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: ^3
ninjaVersion: ^1.11.1
- name: 📥 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 📂 Load .env file
if: hashFiles('.github/workflows/.env') != ''
uses: xom9ikk/dotenv@v2
with:
path: .github/workflows
- name: 🔧 Configure
run: cmake -S ${{ env.CMAKE_SOURCE_PREFIX }} -B ${{ env.CMAKE_BINARY_PREFIX }} -D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -D CMAKE_CXX_STANDARD=${{ matrix.standard }} -D CMAKE_INSTALL_PREFIX=${{ env.CMAKE_INSTALL_PREFIX }} -D CPPTERMINAL_ENABLE_DOCS=OFF
- name: ⚙️ Build
run: cmake --build ${{ env.CMAKE_BINARY_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }} --parallel ${{ env.CMAKE_NUMBER_JOBS }}
- name: 🧪 Test
run: ctest --test-dir ${{ env.CMAKE_BINARY_PREFIX }} -C ${{ env.CMAKE_BUILD_TYPE }} --output-on-failure
- name: 🎉 Install
run: cmake --install ${{ env.CMAKE_BINARY_PREFIX }} --prefix ${{ env.CMAKE_INSTALL_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }}
intel:
runs-on: ubuntu-latest
name: intel-oneapi (c++${{ matrix.standard }})
container: flagarde/ci-ubuntu-intel-2024.2-x86_64:latest
strategy:
fail-fast: false
matrix:
standard: [ 11, 14, 17, 20 ]
steps:
- uses: ammaraskar/gcc-problem-matcher@master
- name: ⬇️ Install git
run: apt-get update ; apt-get install --no-install-recommends -y git unzip
- name: ⬇️ Setup CMake
uses: lukka/get-cmake@latest
with:
cmakeVersion: ^3
ninjaVersion: ^1.11.1
- name: 📥 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 📂 Load .env file
if: hashFiles('.github/workflows/.env') != ''
uses: xom9ikk/dotenv@v2
with:
path: .github/workflows
- name: 🔧 Configure
env:
CC: icx
CXX: icpx
run: . /opt/intel/oneapi/setvars.sh ; cmake -S ${{ env.CMAKE_SOURCE_PREFIX }} -B ${{ env.CMAKE_BINARY_PREFIX }} -D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -D CMAKE_CXX_STANDARD=${{ matrix.standard }} -D CMAKE_INSTALL_PREFIX=${{ env.CMAKE_INSTALL_PREFIX }} -D CPPTERMINAL_ENABLE_DOCS=OFF
- name: ⚙️ Build
run: cmake --build ${{ env.CMAKE_BINARY_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }} --parallel ${{ env.CMAKE_NUMBER_JOBS }}
- name: 🧪 Test
run: ctest --test-dir ${{ env.CMAKE_BINARY_PREFIX }} -C ${{ env.CMAKE_BUILD_TYPE }} --output-on-failure
- name: 🎉 Install
run: cmake --install ${{ env.CMAKE_BINARY_PREFIX }} --prefix ${{ env.CMAKE_INSTALL_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }}