-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
409 lines (392 loc) · 10.3 KB
/
.gitlab-ci.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
image: ubuntu:focal
stages:
- test
- deploy
- release
variables:
SECURE_LOG_LEVEL: debug
include:
- template: Dependency-Scanning.gitlab-ci.yml
- template: Security/SAST.gitlab-ci.yml
dependency_scanning:
needs: []
sast:
needs: []
.retry setting:
retry: 1
line count:
extends: .retry setting
stage: test
needs: []
image: registry.gitlab.com/musicscience37projects/docker/scc-docker
script:
- mkdir -p line_count
- scc
--format-multi "tabular:stdout,html:line_count/line_count.html"
.
- scc
--format-multi "openmetrics:line_count/cpp_line_count.txt"
-i h,cpp
.
- scc
--format-multi "tabular:stdout,html:line_count/src_line_count.html"
--by-file -s complexity
include src
artifacts:
paths:
- line_count
reports:
metrics:
- "line_count/cpp_line_count.txt"
expire_in: "1 mos"
interruptible: true
complexity:
extends: .retry setting
stage: test
needs: []
image: musicscience37/clang-ci:clang19
script:
- poetry config virtualenvs.in-project true
- poetry env use 3.12
- poetry install
- mkdir -p complexity
- poetry run lizard -o complexity/complexity_per_function.html include
- poetry run lizard -o complexity/result.txt -E duplicate include
cache:
key:
prefix: cache-${CI_JOB_NAME}
files:
- poetry.lock
paths:
- .venv
artifacts:
paths:
- complexity
expire_in: "1 mos"
interruptible: true
pre-commit:
stage: test
needs: []
image: musicscience37/clang-ci:clang19
script:
- poetry config virtualenvs.in-project true
- poetry env use 3.12
- poetry install
- poetry run pre-commit run --all-files
cache:
key:
prefix: cache-${CI_JOB_NAME}
files:
- poetry.lock
paths:
- .venv
interruptible: true
spell check:
stage: test
needs: []
image: node
script:
- npm install -g cspell
- cspell lint
"**/*.h"
"**/*.cpp"
"**/*.py"
"**/*.cmake"
"**/*.txt"
"**/*.md"
"**/*.rst"
"**/*.puml"
"**/*.bib"
"**/*.yaml"
"**/*.json"
"**/*.sh"
--exclude "**/*.approved.*"
interruptible: true
.test linux base:
stage: test
needs: []
parallel:
matrix:
- COMPILER_TYPE: ["clang19"]
IMAGE_PATH: "musicscience37/clang-ci"
TEST_TYPE: "release"
image: ${IMAGE_PATH}:${COMPILER_TYPE}
variables:
GIT_SUBMODULE_STRATEGY: recursive
BUILD_DIR: build_${COMPILER_TYPE}_${TEST_TYPE}
CCACHE_DIR: ${CI_PROJECT_DIR}/.ccache
CCACHE_COMPILERCHECK: content
CCACHE_MAXSIZE: 1G
VCPKG_DEFAULT_BINARY_CACHE: ${CI_PROJECT_DIR}/.vcpkg-cache
POETRY_CACHE_DIR: ${CI_PROJECT_DIR}/.poetry-cache
before_script:
- poetry config virtualenvs.in-project true
- poetry env use 3.12
- poetry install
- mkdir -p $VCPKG_DEFAULT_BINARY_CACHE
- mkdir $BUILD_DIR
script:
- poetry run python ./scripts/ci_linux_test.py
--compiler_type $COMPILER_TYPE --test_type $TEST_TYPE --build_dir $BUILD_DIR
cache:
- key:
prefix: poetry-${CI_JOB_NAME}
files:
- poetry.lock
paths:
- .poetry-cache
- key:
prefix: vcpkg-${CI_JOB_NAME}
files:
- vcpkg-configuration.json
paths:
- .vcpkg-cache
- key: ccache-${CI_JOB_NAME}
paths:
- .ccache
artifacts:
paths:
- $BUILD_DIR/bench
- $BUILD_DIR/junit
- $BUILD_DIR/temp_test
- "*.png"
- "*.html"
- test # For outputs of ApprovalTest.
reports:
junit:
- $BUILD_DIR/junit/*.xml
when: always
expire_in: "1 mos"
interruptible: true
test linux:
extends: .test linux base
parallel:
matrix:
- COMPILER_TYPE: "gcc13"
IMAGE_PATH: "musicscience37/gcc-ci"
TEST_TYPE: ["debug", "release", "bench"]
- COMPILER_TYPE: "clang19"
IMAGE_PATH: "musicscience37/clang-ci"
TEST_TYPE: ["debug", "release", "bench"]
script:
- poetry run python ./scripts/ci_linux_test.py
--compiler_type $COMPILER_TYPE --test_type $TEST_TYPE --build_dir $BUILD_DIR
static analysis:
extends: .test linux base
parallel:
matrix:
- COMPILER_TYPE: "clang19"
IMAGE_PATH: "musicscience37/clang-ci"
TEST_TYPE: "static_analysis"
variables:
BUILD_TYPE: Debug
BUILD_DIR: build_static_analysis
script:
- cd $BUILD_DIR
- cmake ..
-DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake
-DVCPKG_TARGET_TRIPLET=x64-linux-llvm
-DVCPKG_HOST_TRIPLET=x64-linux-llvm
-DCMAKE_CXX_FLAGS=-stdlib=libc++
-DCMAKE_BUILD_TYPE=${BUILD_TYPE}
-DNUM_COLLECT_TESTING:BOOL=ON
-DNUM_COLLECT_ENABLE_BENCH=ON
-DNUM_COLLECT_ENABLE_HEAVY_BENCH=OFF
-DNUM_COLLECT_BUILD_EXAMPLES=ON
-DNUM_COLLECT_ENABLE_CPP_WARNINGS:BOOL=ON
- cd ..
- poetry run clang-tidy-checker -b ${BUILD_DIR} --cache_dir ./.clang-tidy-cache
cache:
- key:
prefix: poetry-${CI_JOB_NAME}
files:
- poetry.lock
paths:
- .poetry-cache
- key:
prefix: vcpkg-${CI_JOB_NAME}
files:
- vcpkg-configuration.json
paths:
- .vcpkg-cache
- key: clang-tidy-checker-${CI_JOB_NAME}
paths:
- .clang-tidy-cache
clang coverage:
extends: .test linux base
parallel:
matrix:
- COMPILER_TYPE: "clang19"
IMAGE_PATH: "musicscience37/clang-ci"
TEST_TYPE: "coverage"
variables:
BUILD_TYPE: Debug
BUILD_DIR: build_clang_coverage
script:
- cd $BUILD_DIR
- cmake ..
-DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake
-DVCPKG_TARGET_TRIPLET=x64-linux-llvm
-DVCPKG_HOST_TRIPLET=x64-linux-llvm
-DCMAKE_BUILD_TYPE=Debug
-DNUM_COLLECT_TESTING:BOOL=ON
-DNUM_COLLECT_WRITE_JUNIT:BOOL=ON
"-DCMAKE_CXX_FLAGS=-stdlib=libc++ -fprofile-instr-generate -fcoverage-mapping"
"-DCMAKE_MODULE_LINKER_FLAGS=-fprofile-instr-generate -fcoverage-mapping"
-DNUM_COLLECT_ENABLE_CCACHE:BOOL=ON
- mkdir coverage
- export LLVM_PROFILE_FILE=$(pwd)/coverage/coverage_%p.profraw
- cmake --build .
- ctest -V
- cd ../
- scripts/collect_llvm_coverage.sh build_clang_coverage
- poetry run lcov_cobertura $BUILD_DIR/coverage/coverage --output $BUILD_DIR/coverage.xml
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
coverage: '/[^\s]+%\s+\d+\s+\d+\s+\s[^\s]+%/'
artifacts:
paths:
- $BUILD_DIR/bench
- $BUILD_DIR/junit
- $BUILD_DIR/temp_test
- $BUILD_DIR/coverage
- "*.png"
- "*.html"
reports:
junit:
- $BUILD_DIR/junit/*.xml
coverage_report:
coverage_format: cobertura
path: $BUILD_DIR/coverage.xml
when: always
expire_in: "1 mos"
test asan ubsan:
extends: .test linux base
parallel:
matrix:
- COMPILER_TYPE: "clang19"
IMAGE_PATH: "musicscience37/clang-ci"
TEST_TYPE: "asan_ubsan"
variables:
ASAN_OPTIONS: "alloc_dealloc_mismatch=0"
script:
- poetry run python ./scripts/ci_linux_test.py
--compiler_type $COMPILER_TYPE --test_type $TEST_TYPE --build_dir $BUILD_DIR
test msvc release:
stage: test
needs: []
tags:
- saas-windows-medium-amd64
variables:
GIT_SUBMODULE_STRATEGY: recursive
BUILD_TYPE: Release
BUILD_DIR: build_msvc_release
CCACHE_DIR: ${CI_PROJECT_DIR}/.ccache
CCACHE_COMPILERCHECK: content
CCACHE_MAXSIZE: 1G
VCPKG_DEFAULT_BINARY_CACHE: ${CI_PROJECT_DIR}/.vcpkg-cache
# workaround in https://github.com/python-poetry/poetry/issues/1917#issuecomment-1235998997
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
POETRY_CACHE_DIR: ${CI_PROJECT_DIR}/.poetry-cache
before_script:
- New-Item -ItemType Directory -Force -Path $VCPKG_DEFAULT_BINARY_CACHE
- Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
- choco install cmake -y --installargs 'ADD_CMAKE_TO_PATH=System'
- choco install python312 -y
- choco install ccache -y
- RefreshEnv
- pip install poetry
- poetry config virtualenvs.in-project true
- poetry install --only test
- .\vcpkg\bootstrap-vcpkg.bat
- mkdir $BUILD_DIR
script:
- cd $BUILD_DIR
- cmd.exe /C ..\scripts\ci_win.cmd
cache:
- key:
prefix: poetry-${CI_JOB_NAME}
files:
- poetry.lock
paths:
- .poetry-cache
- key:
prefix: vcpkg-${CI_JOB_NAME}
files:
- vcpkg-configuration.json
paths:
- .vcpkg-cache
- key: ccache-${CI_JOB_NAME}
paths:
- .ccache
artifacts:
paths:
- $BUILD_DIR/bench
- $BUILD_DIR/junit
- $BUILD_DIR/temp_test
- "*.png"
- "*.html"
- test # For outputs of ApprovalTest.
reports:
junit:
- $BUILD_DIR/junit/*.xml
when: always
expire_in: "1 mos"
interruptible: true
doc:
extends: .test linux base
parallel:
matrix:
- COMPILER_TYPE: "clang19"
IMAGE_PATH: "musicscience37/sphinx-doxygen"
TEST_TYPE: "doc"
variables:
BUILD_TYPE: Release
BUILD_DIR: build_doc
script:
- cd $BUILD_DIR
- cmake ..
-DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake
-DNUM_COLLECT_BUILD_DOC:BOOL=ON
- cmake --build . --target num_collect_doc
artifacts:
paths:
- build_doc/doc
when: always
expire_in: "1 mos"
interruptible: true
pages:
stage: deploy
only:
- main
needs:
- "doc: [clang19, musicscience37/sphinx-doxygen, doc]"
- "clang coverage: [clang19, musicscience37/clang-ci, coverage]"
- line count
- complexity
dependencies:
- "doc: [clang19, musicscience37/sphinx-doxygen, doc]"
- "clang coverage: [clang19, musicscience37/clang-ci, coverage]"
- line count
- complexity
image: alpine
script:
- rm -rf public
- mv build_doc/doc/html public
- mv build_clang_coverage/coverage/html public/coverage
- mv line_count public/line_count
- mv complexity public/complexity
artifacts:
paths:
- public
release:
image: registry.gitlab.com/gitlab-org/release-cli:latest
stage: release
needs: []
rules:
- if: $CI_COMMIT_TAG =~ /^v/
script:
- echo "This is a release job."
release:
tag_name: $CI_COMMIT_TAG
name: "$CI_COMMIT_TAG"
description: "./doc/sphinx/src/release_notes/${CI_COMMIT_TAG}.md"