-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
279 lines (244 loc) · 5.59 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
default:
tags:
- docker
stages:
- build
- test
.build_template: &build_definition
stage: build
script:
- export CCACHE_BASEDIR=$PWD
- export CCACHE_DIR=$PWD/.cache/
- export CXXFLAGS='-fdiagnostics-color --coverage -fuse-ld=mold'
- export pybind11_DIR=$(pybind11-config --cmakedir)
- cmake . -B build/
-DCMAKE_BUILD_TYPE=Debug
-DCMAKE_CXX_COMPILER_LAUNCHER=/usr/bin/ccache
-DCMAKE_REQUIRE_FIND_PACKAGE_pybind11=ON
-DCMAKE_REQUIRE_FIND_PACKAGE_Python=ON
-DCMAKE_REQUIRE_FIND_PACKAGE_Sphinx=ON
-GNinja
- cmake --build build/
cache:
key: "$CI_PROJECT_ID"
paths:
- .cache/
artifacts:
paths:
- build/
exclude:
- build/**/*.o
.skbuild_template: &skbuild_definition
stage: build
before_script:
- python -m venv .env/
script:
- source .env/bin/activate
- export CCACHE_BASEDIR=$PWD
- export CCACHE_DIR=$PWD/.cache/
- export CMAKE_CXX_COMPILER_LAUNCHER=/usr/bin/ccache
- export CXXFLAGS='--coverage -fuse-ld=mold'
- export pybind11_DIR=$(pybind11-config --cmakedir)
- pip install -r requirements.txt
- pip install --no-build-isolation
--config-settings build-dir=build/
--config-settings cmake.build-type=Debug
--verbose
--editable .
cache:
key: "$CI_PROJECT_ID"
paths:
- .cache/
artifacts:
paths:
- .env/
- build/
.docs_template: &docs_definition
stage: build
script:
- PYTHONPATH=${CI_PROJECT_DIR}/build/
sphinx-build -M html
${CI_PROJECT_DIR}/docs/
${CI_PROJECT_DIR}/build/docs/_build/
-W --keep-going
artifacts:
paths:
- build/docs/
.skdocs_template: &skdocs_definition
stage: build
script:
- source .env/bin/activate
- sphinx-build -M html
${CI_PROJECT_DIR}/docs/
${CI_PROJECT_DIR}/docs/_build
-W --keep-going
artifacts:
paths:
- docs/_build/html/
.test_template: &test_definition
stage: test
needs:
- build
script:
# Run unit tests
- ctest --test-dir build/
-C Debug -j$(nproc)
--output-on-failure
--output-junit ctest.xml
after_script:
# Run coverage
- cd build/
- mkdir coverage
- gcovr -r .. . -s
--html -o coverage/report.html
--xml coverage.xml
coverage: '/lines:\s+(\d+\.\d+|\d+)%/'
artifacts:
when: always
paths:
- build/coverage
reports:
coverage_report:
coverage_format: cobertura
path: build/coverage.xml
junit: build/ctest.xml
.pytest_template: &pytest_definition
stage: test
script:
- source .env/bin/activate
- coverage run -m pytest --junit-xml=report.xml
- coverage report
- coverage xml
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
artifacts:
when: always
reports:
coverage_report:
coverage_format: cobertura
path: coverage.xml
junit: report.xml
.lint_template: &lint_definition
stage: test
allow_failure: true
script:
- autopep8 --exit-code --diff -r .
- flake8 .
- isort --check-only --diff .
build:python3.9:
image: sergiud/hogpp:python3.9
<<: *skbuild_definition
docs:python3.9:
image: sergiud/hogpp:python3.9
<<: *skdocs_definition
needs:
- build:python3.9
test:python3.9:
image: sergiud/hogpp:python3.9
<<: *pytest_definition
needs:
- build:python3.9
build:python3.10:
image: sergiud/hogpp:python3.10
<<: *skbuild_definition
docs:python3.10:
image: sergiud/hogpp:python3.10
<<: *skdocs_definition
needs:
- build:python3.10
test:python3.10:
image: sergiud/hogpp:python3.10
<<: *pytest_definition
needs:
- build:python3.10
lint:python3.10:
image: sergiud/hogpp:python3.10
<<: *lint_definition
needs: []
build:python3.11:
image: sergiud/hogpp:python3.11
<<: *skbuild_definition
docs:python3.11:
image: sergiud/hogpp:python3.11
<<: *skdocs_definition
needs:
- build:python3.11
test:python3.11:
image: sergiud/hogpp:python3.11
<<: *pytest_definition
needs:
- build:python3.11
lint:python3.11:
image: sergiud/hogpp:python3.11
<<: *lint_definition
needs: []
build:python3.12:
image: sergiud/hogpp:python3.12
<<: *skbuild_definition
docs:python3.12:
image: sergiud/hogpp:python3.12
<<: *skdocs_definition
needs:
- build:python3.12
test:python3.12:
image: sergiud/hogpp:python3.12
<<: *pytest_definition
needs:
- build:python3.12
lint:python3.12:
image: sergiud/hogpp:python3.12
<<: *lint_definition
needs: []
build:python3.13:
image: sergiud/hogpp:python3.13
<<: *skbuild_definition
docs:python3.13:
image: sergiud/hogpp:python3.13
<<: *skdocs_definition
needs:
- build:python3.13
test:python3.13:
image: sergiud/hogpp:python3.13
<<: *pytest_definition
needs:
- build:python3.13
lint:python3.13:
image: sergiud/hogpp:python3.13
<<: *lint_definition
needs: []
build:pypy3.10:
image: sergiud/hogpp:pypy3.10
<<: *skbuild_definition
docs:pypy3.10:
image: sergiud/hogpp:pypy3.10
<<: *skdocs_definition
needs:
- build:pypy3.10
test:pypy3.10:
image: sergiud/hogpp:pypy3.10
<<: *pytest_definition
needs:
- build:pypy3.10
lint:pypy3.10:
image: sergiud/hogpp:pypy3.10
<<: *lint_definition
needs: []
lint:cpp:
image: sergiud/hogpp:lint-18
stage: test
allow_failure: true
script:
- fdfind -g '*.[ch]pp' -x clang-format-18 --dry-run --Werror
needs: []
build:bookworm:
image: sergiud/hogpp:bookworm
<<: *build_definition
docs:bookworm:
image: sergiud/hogpp:bookworm
<<: *docs_definition
needs:
- build:bookworm
test:bookworm:
image: sergiud/hogpp:bookworm
<<: *test_definition
needs:
- build:bookworm