-
Notifications
You must be signed in to change notification settings - Fork 62
457 lines (389 loc) · 13.6 KB
/
test.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
---
name: push
on:
push:
branches:
- '**'
workflow_dispatch:
jobs:
# Build and test many combinations on Linux/OS X using Conan
clang-tidy:
strategy:
matrix:
int128: ["True", "False"]
container: johnmcfarlane/cnl_ci:clang-14-libcpp
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Restore Dependency Cache
uses: actions/cache@v2
env:
CACHE_SLUG: clang-tidy-conan
with:
path: |
/github/home/.conan/data
key: ${{ env.CACHE_SLUG }}-${{ github.ref_name }}-${{ hashFiles('conanfile.py','.github/conan/**','test/toolchain/**') }}
restore-keys: |
${{ env.CACHE_SLUG }}-main-
${{ env.CACHE_SLUG }}-${{ github.ref_name }}-
${{ env.CACHE_SLUG }}-
- name: Restore Compiler Cache
uses: hendrikmuhs/ccache-action@v1
env:
CACHE_SLUG: clang-tidy-ccache
with:
key: ${{ env.CACHE_SLUG }}
- name: Cache Report
run: |
ccache -s
conan search
- name: Initialise Conan
run: |
conan config install $GITHUB_WORKSPACE/.github/conan/settings.yml
- name: Install dependencies
run: |
conan install \
--build=missing \
--profile $GITHUB_WORKSPACE/.github/conan/profiles/linux-clang-tidy \
--options int128=${{ matrix.int128 }} \
--options sanitize=False \
--env CONAN_CMAKE_GENERATOR=Ninja \
$GITHUB_WORKSPACE
- name: Build tests
run: conan build --build --configure $GITHUB_WORKSPACE
- name: Test library
run: conan build --test $GITHUB_WORKSPACE
- name: Cache Report
run: |
conan search
# Build and test many combinations on Linux/OS X using Conan
conan:
strategy:
matrix:
name: [
clang-14-libc++, clang-14-libstdc++,
clang-13-libc++, clang-13-libstdc++,
clang-12-libstdc++,
clang-11-libstdc++,
clang-10-libstdc++,
gcc-12, gcc-11, gcc-10, osx-clang-13, osx-gcc-11, gcc-10-armv7
]
include:
# Clang-14
- name: clang-14-libc++
linux-container: johnmcfarlane/cnl_ci:clang-14-libcpp
os-version: ubuntu-20.04
profile: linux-clang-14-libc++
- name: clang-14-libstdc++
linux-container: johnmcfarlane/cnl_ci:clang-14-libstdcpp
os-version: ubuntu-20.04
profile: linux-clang-14-libstdc++
# Clang-13
- name: clang-13-libc++
linux-container: johnmcfarlane/cnl_ci:clang-13-libcpp
os-version: ubuntu-20.04
profile: linux-clang-13-libc++
- name: clang-13-libstdc++
linux-container: johnmcfarlane/cnl_ci:clang-13-libstdcpp
os-version: ubuntu-20.04
profile: linux-clang-13-libstdc++
# Clang-12 (Contrary)
- name: clang-12-libstdc++
generator: "Unix Makefiles"
linux-container: johnmcfarlane/cnl_ci:clang-12-libstdcpp
os-version: ubuntu-20.04
profile: linux-clang-12-libstdc++
# Clang-11
- name: clang-11-libstdc++
linux-container: johnmcfarlane/cnl_ci:clang-11-libstdcpp
os-version: ubuntu-20.04
profile: linux-clang-11-libstdc++
# Clang-10
- name: clang-10-libstdc++
linux-container: johnmcfarlane/cnl_ci:clang-10-libstdcpp
os-version: ubuntu-20.04
profile: linux-clang-10-libstdc++
# GCC-12
- name: gcc-12
linux-container: johnmcfarlane/cnl_ci:gcc-12
os-version: ubuntu-20.04
profile: linux-gcc-12
# GCC-11
- name: gcc-11
linux-container: johnmcfarlane/cnl_ci:gcc-11
os-version: ubuntu-20.04
profile: linux-gcc-11
# GCC-10
- name: gcc-10
generator: "Unix Makefiles"
linux-container: johnmcfarlane/cnl_ci:gcc-10
os-version: ubuntu-20.04
profile: linux-gcc-10
# OS X Clang (latest)
- name: osx-clang-13
os-version: macos-12
profile: osx-clang-13
# OS X GCC-11
- name: osx-gcc-11
os-version: macos-12
profile: osx-gcc-11
# GCC-10 (for ARMv7)
- name: gcc-10-armv7
linux-container: johnmcfarlane/cnl_ci:gcc-10-arm
os-version: ubuntu-20.04
profile: linux-gcc-10-armv7
container: ${{matrix.linux-container}}
runs-on: ${{matrix.os-version}}
steps:
- uses: actions/checkout@v2
- name: Restore Dependency Cache
uses: actions/cache@v2
env:
CACHE_SLUG: conan-conan-${{ matrix.name }}
with:
path: |
/github/home/.conan/data
/Users/runner/.conan/data
key: ${{ env.CACHE_SLUG }}-${{ github.ref_name }}-${{ hashFiles('conanfile.py','.github/conan/**','test/toolchain/**') }}
restore-keys: |
${{ env.CACHE_SLUG }}-main-
${{ env.CACHE_SLUG }}-${{ github.ref_name }}-
${{ env.CACHE_SLUG }}-
- name: Install Brew packages
if: ( matrix.os-version == 'macos-12' )
run: |
brew install ccache conan@1 ninja
echo "/usr/local/opt/conan@1/bin:$PATH" >> $GITHUB_PATH
- name: Restore Compiler Cache
uses: hendrikmuhs/ccache-action@v1
env:
CACHE_SLUG: conan-compiler-${{ matrix.name }}
with:
key: ${{ env.CACHE_SLUG }}
- name: Cache Report
run: |
ccache -s
conan search
- name: Initialise Conan
run: |
conan config install $GITHUB_WORKSPACE/.github/conan/settings.yml
- name: Install dependencies
env:
CONAN_CMAKE_GENERATOR: "${{matrix.generator}}"
run: |
conan install \
--build=missing \
--env:build CONAN_CMAKE_GENERATOR="${CONAN_CMAKE_GENERATOR:-Ninja}" \
--env:host CONAN_CMAKE_GENERATOR="${CONAN_CMAKE_GENERATOR:-Ninja}" \
--profile $GITHUB_WORKSPACE/.github/conan/profiles/${{matrix.profile}} \
$GITHUB_WORKSPACE
- name: Build tests
run: conan build --build --configure --install $GITHUB_WORKSPACE
- name: Test library
if: ( matrix.name != 'gcc-10-armv7' )
run: conan build --test $GITHUB_WORKSPACE
- name: Run benchmarks
if: ( matrix.name != 'clang-11' && matrix.name != 'gcc-10-armv7' )
run: |
./test/benchmark/test-benchmark --benchmark_format=csv | tee result.csv \
"${GITHUB_WORKSPACE}"/test/benchmark/report.py result.csv
- name: Cache Report
run: |
conan search
# Build and test on Windows using Conan
windows:
strategy:
matrix:
name: [2022-64, 2022-32, 2019-64, 2019-32]
include:
- name: 2022-64
build-profile: msvc-17-x86_64
host-profile: msvc-17-x86_64
runs-on: "windows-2022"
- name: 2022-32
build-profile: msvc-17-x86_64
host-profile: msvc-17-x86
runs-on: "windows-2022"
- name: 2019-64
build-profile: msvc-16-x86_64
host-profile: msvc-16-x86_64
runs-on: "windows-2019"
- name: 2019-32
build-profile: msvc-16-x86_64
host-profile: msvc-16-x86
runs-on: "windows-2019"
build_type: ["Debug", "Release"]
runs-on: ${{matrix.runs-on}}
steps:
- uses: actions/checkout@v2
- name: Restore Dependency Cache
uses: actions/cache@v2
env:
CACHE_SLUG: windows-dep-${{ matrix.name }}-${{ matrix.build_type }}
with:
path: |
~\AppData\Local\pip\Cache
~\.conan\data
key: ${{ env.CACHE_SLUG }}-${{ github.ref_name }}-${{ hashFiles('conanfile.py','.github/conan/**','test/toolchain/**') }}
restore-keys: |
${{ env.CACHE_SLUG }}-main-
${{ env.CACHE_SLUG }}-${{ github.ref_name }}-
${{ env.CACHE_SLUG }}-
- name: Install Conan
run: |
pip.exe install "conan<2";
- name: Cache Report
run: |
conan search
- name: Create build directory
run: mkdir ${{runner.workspace}}\build
- name: Install dependencies
working-directory: ${{runner.workspace}}/build
run: |
conan install `
--build=missing `
--profile:build $env:GITHUB_WORKSPACE/.github/conan/profiles/${{matrix.build-profile}} `
--profile:host $env:GITHUB_WORKSPACE/.github/conan/profiles/${{matrix.host-profile}} `
--settings:host build_type="${{matrix.build_type}}" `
$env:GITHUB_WORKSPACE
- name: Build and run tests
working-directory: ${{runner.workspace}}/build
run: conan build --build --configure --test $env:GITHUB_WORKSPACE
- name: Run benchmarks
working-directory: ${{runner.workspace}}/build
run: test\benchmark\${{matrix.build_type}}\test-benchmark.exe
- name: Cache Report
run: |
conan search
# Test documentation generation
doxygen:
runs-on: ubuntu-20.04
container: johnmcfarlane/cnl_ci:base-21.10
steps:
- uses: actions/checkout@v2
- name: Test Doxyfile
shell: bash
run: |
doxygen -s -u doc/Doxyfile
rm doc/Doxyfile.bak
git diff --exit-code
- name: Generate documentation
shell: bash
run: $GITHUB_WORKSPACE/doc/generate
- name: Upload documentation
uses: actions/upload-artifact@v2
with:
name: documentation
path: ${{github.workspace}}/htdocs
# Build and test latest on Linux using only CMake
cmake:
strategy:
fail-fast: false
matrix:
compiler: [gcc, clang]
include:
- compiler: clang
stdlib-flag: "-stdlib=libstdc++"
toolchain: clang.cmake
container: johnmcfarlane/cnl_ci:clang-14-libstdcpp
- compiler: gcc
stdlib-flag: "-fsanitize=address,undefined"
toolchain: gcc.cmake
container: johnmcfarlane/cnl_ci:gcc-12
build_type: ["Release", "Debug"]
cxx-extensions: ["ON", "OFF"]
exceptions: ["ON", "OFF"]
container: ${{matrix.container}}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Restore Compiler Cache
uses: hendrikmuhs/ccache-action@v1
env:
CACHE_SLUG: cmake-ccache-${{ matrix.compiler }}-${{ matrix.build_type }}-${{ matrix.cxx-extensions }}-${{ matrix.exceptions }}
with:
key: ${{ env.CACHE_SLUG }}-${{ hashFiles('test/toolchain/**') }}
- name: Cache Report
run: |
ccache -s
- name: Build and Install GTest
env:
CXXFLAGS: ${{matrix.stdlib-flag}}
run: |
git clone https://github.com/google/googletest.git
cd googletest
git checkout 8d51dc50eb7e7698427fed81b85edad0e032112e
cmake \
-DCMAKE_CXX_COMPILER_LAUNCHER:STRING=ccache \
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=$GITHUB_WORKSPACE/test/toolchain/${{matrix.toolchain}} \
.
cmake --build . --target install
- name: Configure CNL
run: |
cmake \
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-DCMAKE_CXX_COMPILER_LAUNCHER:STRING=ccache \
-DCMAKE_CXX_EXTENSIONS=${{matrix.cxx-extensions}} \
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=$GITHUB_WORKSPACE/test/toolchain/${{matrix.toolchain}} \
-DCNL_EXCEPTIONS=${{matrix.exceptions}} \
-DCNL_SANITIZE=ON \
$GITHUB_WORKSPACE
- name: Build CNL
run: cmake --build $GITHUB_WORKSPACE --target test-all
- name: Test CNL
run: ctest --output-on-failure
# Install on mature Linux distro using only CMake
install:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Configure CNL
run: cmake $GITHUB_WORKSPACE
- name: Install CNL
run: sudo cmake --build $GITHUB_WORKSPACE --target install
# Test shell scripts
shellcheck:
runs-on: ubuntu-20.04
container: johnmcfarlane/cnl_ci:base-20.04
steps:
- uses: actions/checkout@v2
- name: Run shellcheck
shell: bash
run: |
git config --global --add safe.directory $GITHUB_WORKSPACE
$GITHUB_WORKSPACE/test/scripts/shellcheck
# Test YAML
yamllint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Run yamllint
shell: bash
run: |
sudo apt install yamllint
$GITHUB_WORKSPACE/test/scripts/yamllint
# Lint with pre-commit
lint:
container: johnmcfarlane/cnl_ci:clang-14
runs-on: ubuntu-22.04
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Load package caches
uses: actions/cache@v2
env:
CACHE_SLUG: ${{ github.job }}-${{ matrix.name }}
with:
path: |
/github/home/.cache/pre-commit
key: ${{ env.CACHE_SLUG }}-${{ github.ref_name }}
restore-keys: |
${{ env.CACHE_SLUG }}-main
${{ env.CACHE_SLUG }}-${{ github.ref_name }}
${{ env.CACHE_SLUG }}-
- name: Run pre-commit
shell: bash
run: |
git config --global --add safe.directory $GITHUB_WORKSPACE
$GITHUB_WORKSPACE/test/scripts/lint
...