-
Notifications
You must be signed in to change notification settings - Fork 62
348 lines (307 loc) · 9.95 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
name: Test
on:
push:
branches:
- '**'
jobs:
# Build and test many combinations on Linux/OS X using Conan
posix-conan-test:
strategy:
matrix:
name: [clang-11, osx-gcc-10, gcc-10, clang-11-sanitize, clang-5, gcc-5, gcc-7, armv7]
include:
# Clang-11
- name: clang-11
compiler: clang
version: "11"
os: linux
arch: x86_64
build-type: Release
cc: clang
cxx: clang++
exceptions: "True"
generator: "Ninja"
int128: "True"
linux-container: johnmcfarlane/cnl_ci:clang-11-libcpp
os-version: ubuntu-20.04
sanitize: "False"
std: 17
stdlib: libc++
toolchain: clang-tidy-libc++.cmake
# OS X
- name: osx-gcc-10
os: osx
compiler: gcc
version: "10"
arch: x86_64
build-type: Release
cc: gcc-10
cxx: g++-10
exceptions: "True"
generator: "Ninja"
int128: "True"
os-version: macos-10.15
sanitize: "False"
std: 20
stdlib: libstdc++11
toolchain: gcc.cmake
# GCC-10
- name: gcc-10
compiler: gcc
version: "10"
os: linux
arch: x86_64
build-type: Release
cc: gcc-10
cxx: g++-10
exceptions: "True"
generator: "Ninja"
int128: "True"
linux-container: johnmcfarlane/cnl_ci:gcc-10
os-version: ubuntu-20.04
sanitize: "False"
std: 20
stdlib: libstdc++11
toolchain: gcc.cmake
# Sanitizers
- name: clang-11-sanitize
compiler: clang
version: "11"
os: linux
arch: x86_64
build-type: Release
cc: clang
cxx: clang++
exceptions: "True"
generator: "Ninja"
int128: "True"
linux-container: johnmcfarlane/cnl_ci:clang-11-libcpp
os-version: ubuntu-20.04
sanitize: "True"
std: 17
stdlib: libc++
toolchain: clang-libc++.cmake
# Clang-5
- name: clang-5
compiler: clang
version: "5.0"
os: linux
arch: x86_64
build-type: Release
cc: clang
cxx: clang++
exceptions: "True"
generator: "Ninja"
int128: "True"
linux-container: johnmcfarlane/cnl_ci:clang-5-libstdcpp
os-version: ubuntu-20.04
sanitize: "False"
std: 11
stdlib: libstdc++11
toolchain: clang.cmake
# GCC-5
- name: gcc-5
compiler: gcc
version: "5"
os: linux
arch: x86_64
build-type: Release
cc: gcc-5
cxx: g++-5
exceptions: "True"
generator: "Ninja"
int128: "True"
linux-container: johnmcfarlane/cnl_ci:gcc-5
os-version: ubuntu-20.04
sanitize: "False"
std: 11
stdlib: libstdc++11
toolchain: gcc.cmake
# Contrary
- name: gcc-7
cxx: g++-7
cc: gcc-7
version: "7"
exceptions: "False"
int128: "False"
os: linux
arch: x86_64
build-type: Debug
compiler: gcc
generator: "Unix Makefiles"
linux-container: johnmcfarlane/cnl_ci:gcc-7
os-version: ubuntu-18.04
sanitize: "False"
std: 14
stdlib: libstdc++11
toolchain: gcc.cmake
# ARMv7
- name: armv7
arch: armv7
compiler: gcc
version: "10"
os: linux
build-type: Release
cc: arm-linux-gnueabi-gcc-10
cxx: arm-linux-gnueabi-g++-10
exceptions: "True"
generator: "Ninja"
int128: "False"
linux-container: johnmcfarlane/cnl_ci:gcc-10-arm
os-version: ubuntu-20.04
sanitize: "False"
std: 20
stdlib: libstdc++11
toolchain: gcc-armv7.cmake
container: ${{matrix.linux-container}}
env:
CC: ${{matrix.cc}}
CXX: ${{matrix.cxx}}
runs-on: ${{matrix.os-version}}
steps:
- uses: actions/checkout@v2
- name: Install Brew packages
if: ( matrix.os == 'osx' )
run: brew install conan gcc@10 ninja
- name: Initialise Conan
run: |
conan profile new default --detect && \
conan profile update settings.compiler=${{matrix.compiler}} default && \
conan profile update settings.compiler.cppstd=${{matrix.std}} default && \
conan profile update settings.compiler.libcxx=${{matrix.stdlib}} default && \
conan profile update settings.compiler.version=${{matrix.version}} default && \
conan profile update settings.arch=${{matrix.arch}} default
- name: Install dependencies
run: |
conan install \
--build=missing \
--env CONAN_CMAKE_GENERATOR="${{matrix.generator}}" \
--env CONAN_CMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/test/cmake/toolchain/${{matrix.toolchain}} \
--options int128=${{matrix.int128}} \
--options enable_exceptions=${{matrix.exceptions}} \
--options sanitize=${{matrix.sanitize}} \
--options target=test-all \
$GITHUB_WORKSPACE
- name: Build tests
run: conan build --build --configure $GITHUB_WORKSPACE
- name: Test library
if: ( matrix.arch != 'armv7' )
run: conan build --test $GITHUB_WORKSPACE
- name: Run benchmarks
if: (matrix.name=='clang-11' || matrix.name=='gcc-10')
run: |
./test/benchmark/test-benchmark --benchmark_format=csv | tee result.csv \
"${GITHUB_WORKSPACE}"/test/benchmark/report.py result.csv
# Build and test on Windows using Conan
windows-conan-test:
runs-on: windows-2019
strategy:
matrix:
arch: [x86_64, x86]
include:
- arch: x86_64
cmake_arch: x64
exceptions: "True"
msbuild_property: x64
- arch: x86
cmake_arch: Win32
exceptions: "False"
msbuild_property: win32
steps:
- uses: actions/checkout@v2
- name: Initialise Conan
run: |
pip.exe install conan;
conan profile new default;
conan profile update settings.compiler="Visual Studio" default;
conan profile update settings.os=Windows default;
conan profile update settings.arch=${{matrix.arch}} default;
conan profile update settings.compiler.version=16 default
- name: Create build directory
run: mkdir ${{runner.workspace}}\build
- name: Install dependencies
working-directory: ${{runner.workspace}}/build
run: |
conan install `
--build=missing `
--env CONAN_CMAKE_GENERATOR="Visual Studio 16 2019" `
--env CONAN_CMAKE_TOOLCHAIN_FILE="$env:GITHUB_WORKSPACE"\test\cmake\toolchain\msvc.cmake `
--options enable_exceptions=${{matrix.exceptions}} `
--options target=test-all `
--settings build_type=Release `
$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\Release\test-benchmark.exe
# Build and test latest on Linux using only CMake
linux-cmake-test:
strategy:
matrix:
compiler: [clang-head, gcc-head]
include:
- compiler: clang-head
toolchain: clang.cmake
container: johnmcfarlane/cnl_ci:clang-head-libstdcpp
- compiler: gcc-head
toolchain: gcc.cmake
container: johnmcfarlane/cnl_ci:gcc-head
container: ${{matrix.container}}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build and Install GTest
run: |
git clone https://github.com/google/googletest.git && \
cd googletest && \
git checkout 3c95bf552405fd0cc63cea0ca2f6c4cd89c8d356 && \
cmake \
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=$GITHUB_WORKSPACE/test/cmake/toolchain/${{matrix.toolchain}} \
. && \
cmake --build . --target install
- name: Configure CNL
run: |
cmake \
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=$GITHUB_WORKSPACE/test/cmake/toolchain/${{matrix.toolchain}} \
$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
linux-cmake-install:
runs-on: ubuntu-18.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 All Tests
shell: bash
run: $GITHUB_WORKSPACE/test/scripts/shellcheck
# Test documentation generation
doxygen:
runs-on: ubuntu-18.04
container: johnmcfarlane/cnl_ci:gcc-10
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- 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