-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
271 lines (234 loc) · 5.43 KB
/
.gitlab-ci.yml
File metadata and controls
271 lines (234 loc) · 5.43 KB
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
stages:
- devenv
- build
- test
- lint
- style
- coverage
- release
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == "push"
variables:
GIT_DEPTH: 0
.nix:
image: registry.gitlab.com/cynerd/gitlab-ci-nix
tags:
- docker
cache:
key: "nix"
paths:
- ".nix-cache"
before_script:
- gitlab-ci-nix-cache-before
after_script:
- gitlab-ci-nix-cache-after
## Development environment #####################################################
devenv:
stage: devenv
extends: .nix
script:
- nix develop -c true
## Build stage #################################################################
.build:
stage: build
extends: .nix
needs: ["devenv"]
build:
extends: .build
script:
- nix develop --quiet -c meson setup build -Doptimization=plain $SETUP_ARGS
- nix develop --quiet -c meson compile -C build
artifacts:
when: always
paths:
- 'build/'
build-werror:
extends: build
needs:
- job: build
artifacts: false
allow_failure: true
variables:
SETUP_ARGS: --werror
nix:
extends: .build
script:
- nix build --log-lines 10000 .?submodules=1
docs:
extends: .build
allow_failure: true
script:
- nix develop --quiet -c sphinx-build --nitpicky --fail-on-warning docs html
## Test stage ##################################################################
.test:
stage: test
extends: .nix
needs: ["devenv"]
.test-meson:
extends: .test
needs:
- job: build
artifacts: false
script:
- ulimit -n 1024 # workaround for Valgrind
- nix develop --quiet -c meson setup build -Doptimization=plain $SETUPARG
- nix develop --quiet -c meson test -C build --print-errorlogs $TESTARG
artifacts:
when: always
paths:
- 'build/'
tests:
extends: .test-meson
variables:
SETUPARG: -Db_coverage=true # Used in coverage job
artifacts:
reports:
junit: 'build/meson-logs/testlog.junit.xml'
valgrind:memcheck:
extends: .test-meson
variables:
TESTARG: --setup=memcheck
valgrind:helgrind:
extends: .test-meson
variables:
TESTARG: --setup=helgrind
valgrind:drd:
extends: .test-meson
variables:
TESTARG: --setup=drd
nix-check:
extends: .test
needs:
- job: nix
artifacts: false
script:
- nix flake check .?submodules=1
include:
- template: Security/Secret-Detection.gitlab-ci.yml
## Linters #####################################################################
.lint:
stage: lint
extends: .nix
needs: ["devenv"]
allow_failure: true
clang-tidy:
extends: .lint
needs: ["build"]
script:
- nix develop --quiet -c ninja -C build clang-tidy
ruff:
extends: .lint
script:
- nix develop --quiet -c ruff check .
mypy:
extends: .lint
script:
- mkdir .mypy-cache
- nix develop --quiet -c mypy --cache-dir .mypy-cache --exclude 'docs' .
shellcheck:
extends: .lint
script:
- git ls-files '**.sh' | xargs nix run --quiet .#shellcheck
sphinx-lint:
extends: .lint
script: |
git ls-files '**.rst' '**.py' |
xargs nix run --quiet .#sphinx-lint -- --max-line-length 88 --enable all
statix:
extends: .lint
script:
- nix run --quiet .#statix -- check .
## Style stage #################################################################
.style:
stage: style
extends: .nix
needs: ["devenv"]
allow_failure: true
muon:
extends: .style
script:
- |
git ls-files '**/meson.build' meson_options.txt |
xargs nix run --quiet .#muon -- fmt -e -i
- git diff --exit-code
clang-format:
extends: .style
needs: ["build"]
script:
- nix develop --quiet -c ninja -C build clang-format
- git diff --exit-code
ruff-format:
extends: .style
script:
- nix develop --quiet -c ruff format --diff .
- nix develop --quiet -c ruff check --diff .
shell-format:
extends: .style
script:
- git ls-files '**.sh' '**.bats' | xargs nix run --quiet .#shfmt -- -d
docstrfmt:
extends: .style
script:
- |
git ls-files '**.rst' '**.py' |
xargs nix run --quiet .#docstrfmt -- --no-docstring-trailing-line
- git diff --exit-code
nixfmt:
extends: .style
script:
- nix fmt .
- git diff --exit-code
deadnix:
extends: .style
script:
- nix run --quiet .#deadnix -- --fail .
editorconfig-checker:
extends: .style
script:
- nix run --quiet .#editorconfig-checker -- -exclude '.nix-cache/.*'
gitlint:
extends: .style
script:
- git fetch
- nix run --quiet .#gitlint -- --commits origin/master..$CI_COMMIT_SHA
## Code Coverage stage #########################################################
coverage:
stage: coverage
extends: .nix
needs: ["tests"]
script:
- nix develop --quiet -c ninja -j1 -C build coverage-html coverage-xml
- mv build/meson-logs/coveragereport ./
coverage: '/lines\.\.\.\.\.\.: (\d+.\d+%)/'
artifacts:
expire_in: 1 month
expose_as: 'Code Coverage'
paths:
- 'coveragereport/'
reports:
coverage_report:
coverage_format: cobertura
path: 'build/meson-logs/coverage.xml'
## Release creation ############################################################
release:
stage: release
extends: .nix
rules:
- if: '$CI_COMMIT_TAG'
needs:
- job: tests
artifacts: false
script:
- nix develop --quiet -c ./release.sh
pages:
stage: release
extends: .nix
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
needs: ["devenv"]
script:
- bash docs/pages.sh public
artifacts:
paths:
- public