-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
346 lines (311 loc) · 11.7 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
stages:
- lint
- build
- test
- docs
- report
- deploy
variables:
SCRIPTS_DIR: "${CI_PROJECT_DIR}/scripts"
CI_SCRIPTS_DIR: "${CI_PROJECT_DIR}/scripts/ci"
BUILD_PATH: "${CI_PROJECT_DIR}/gkfs/build"
INSTALL_PATH: "${CI_PROJECT_DIR}/gkfs/install"
INTEGRATION_TESTS_BIN_PATH: "${CI_PROJECT_DIR}/gkfs/install/share/gkfs/tests/integration"
COVERAGE_PATH: "${CI_PROJECT_DIR}/gkfs/build/coverage"
PYTEST: "${CI_PROJECT_DIR}/gkfs/install/share/gkfs/tests/integration/pytest-venv/bin/py.test"
BATS: "${CI_PROJECT_DIR}/tests/scripts/bats/bin/bats"
LD_LIBRARY_PATH: "${CI_PROJECT_DIR}/deps/install/lib:${CI_PROJECT_DIR}/deps/install/lib64"
# Configuration variables
GKFS_LOG_LEVEL: "100"
GKFS_DAEMON_LOG_PATH: "${CI_PROJECT_DIR}/logs/daemon.log"
LIBGKFS_LOG: "all"
LIBGKFS_LOG_OUTPUT: "${CI_PROJECT_DIR}/logs/gkfs_client.log"
GIT_SUBMODULE_STRATEGY: recursive
# base image
image: gekkofs/core:0.9.2
################################################################################
## Validating
################################################################################
check format:
stage: lint
image: gekkofs/linter:0.9.2
needs: []
script:
- ${SCRIPTS_DIR}/check_format.sh
-s "${CI_PROJECT_DIR}/src"
-i "${CI_PROJECT_DIR}/include"
-v
################################################################################
## Building
################################################################################
gkfs:
stage: build
image: gekkofs/deps:0.9.2
interruptible: true
needs: []
script:
# Change config.hpp with sed to enable extra features
- sed -i 's/constexpr auto use_atime = false;/constexpr auto use_atime = true;/g' "${CI_PROJECT_DIR}/include/config.hpp"
- sed -i 's/constexpr auto use_ctime = false;/constexpr auto use_ctime = true;/g' "${CI_PROJECT_DIR}/include/config.hpp"
- sed -i 's/constexpr auto use_mtime = false;/constexpr auto use_mtime = true;/g' "${CI_PROJECT_DIR}/include/config.hpp"
- sed -i 's/constexpr auto use_link_cnt = false;/constexpr auto use_link_cnt = true;/g' "${CI_PROJECT_DIR}/include/config.hpp"
- sed -i 's/constexpr auto use_blocks = false;/constexpr auto use_blocks = true;/g' "${CI_PROJECT_DIR}/include/config.hpp"
- cmake --preset ci-coverage -DCOVERAGE_OUTPUT_DIR=${COVERAGE_PATH}
- cmake --build ${BUILD_PATH} -j $(nproc) --target install
# reduce artifacts size
- ${CI_SCRIPTS_DIR}/trim_build_artifacts.sh ${BUILD_PATH}
artifacts:
paths:
- ${BUILD_PATH}
- ${INSTALL_PATH}
expire_in: 1 week
gkfwd:
stage: build
image: gekkofs/deps:0.9.2
interruptible: true
needs: []
script:
- cmake --preset ci-forwarding-coverage
- cmake --build ${BUILD_PATH} -j $(nproc) --target install
# reduce artifacts size
- ${CI_SCRIPTS_DIR}/trim_build_artifacts.sh ${BUILD_PATH}
artifacts:
paths:
- ${BUILD_PATH}
- ${INSTALL_PATH}
expire_in: 1 week
################################################################################
## Testing
################################################################################
## == tests for scripts ====================
scripts:
stage: test
image: gekkofs/testing:0.9.2
needs: []
script:
- mkdir -p ${BUILD_PATH}/tests/scripts
- cd ${BUILD_PATH}/tests/scripts
- ${BATS} -r ${CI_PROJECT_DIR}/tests/scripts/dl_dep.sh --formatter junit
- ${BATS} -r ${CI_PROJECT_DIR}/tests/scripts/compile_dep.sh --formatter junit
artifacts:
expire_in: 1 week
reports:
junit: ${BUILD_PATH}/tests/scripts/report.xml
## == coverage baseline ====================
coverage:zerocount:
stage: test
image: gekkofs/testing:0.9.2
interruptible: true
needs: ['gkfs', 'gkfwd']
script:
## capture initial coverage information to establish a baseline
## and write it to $COVERAGE_PATH/zerocount.info
- cd ${CI_PROJECT_DIR}
- cmake --preset ci-coverage
-DCOVERAGE_OUTPUT_DIR=${COVERAGE_PATH}
-DCOVERAGE_ZEROCOUNT_TRACEFILE=${COVERAGE_PATH}/zerocount.info
## Since the pipeline recreates the source tree, the access times for .gcno
## files are newer than those of .gcda files. This makes gcov emit a
## warning for each file which slows it down. Updating the timestamps
## avoids this
- find ${BUILD_PATH} -name "*.gcno" -exec touch {} \;
- cmake --build ${BUILD_PATH} --target coverage-zerocount
artifacts:
expire_in: 1 week
when: always
paths:
- ${COVERAGE_PATH}/zerocount.info
## == integration tests for gkfs ===========
gkfs:integration:
stage: test
image: gekkofs/testing:0.9.2
interruptible: true
needs: ['gkfs']
parallel:
matrix:
- SUBTEST: [ data, status, syscalls, directories, operations, position, shell, rename ]
script:
## run tests
- export PATH=${PATH}:/usr/local/bin
- mkdir -p ${BUILD_PATH}/tests/run
- cd ${BUILD_PATH}/tests/integration
- ${PYTEST} -v -n $(nproc)
${INTEGRATION_TESTS_BIN_PATH}/${SUBTEST}
--basetemp=${BUILD_PATH}/tests/run/${SUBTEST}
--junit-xml=report.xml
## capture coverage information for this test and write it to
## $COVERAGE_PATH/$SUBTEST.info
- cd ${CI_PROJECT_DIR}
- cmake --preset ci-coverage
-DCOVERAGE_OUTPUT_DIR=${COVERAGE_PATH}
-DCOVERAGE_CAPTURE_TRACEFILE=${COVERAGE_PATH}/${SUBTEST}.info
## Since the pipeline recreates the source tree, the access times for .gcno
## files are newer than those of .gcda files. This makes gcov emit a
## warning for each file which slows it down. Updating the timestamps
## avoids this
- find ${BUILD_PATH} -name "*.gcno" -exec touch {} \;
- cmake --build ${BUILD_PATH} --target coverage-capture
# fix relative paths so that GitLab can find the correct files
after_script:
- perl -i.orig
-pe 's%file="(.*?)"%file="tests/integration/$1"%;'
-pe 's%(../)+install/share/gkfs/%%g;'
${BUILD_PATH}/tests/integration/report.xml
artifacts:
expire_in: 1 week
when: always
paths:
- ${BUILD_PATH}
reports:
junit: ${BUILD_PATH}/tests/integration/report.xml
## == integration tests for gkfwd ==========
gkfwd:integration:
stage: test
image: gekkofs/testing:0.9.2
interruptible: true
needs: ['gkfwd']
parallel:
matrix:
- SUBTEST: [ forwarding ]
script:
## run tests
- mkdir -p ${BUILD_PATH}/tests/run
- cd ${BUILD_PATH}/tests/integration
- ${PYTEST} -v -n $(nproc)
${INTEGRATION_TESTS_BIN_PATH}/${SUBTEST}
--basetemp=${BUILD_PATH}/tests/run/${SUBTEST}
--junit-xml=report.xml
## capture coverage information for this test and write it to
## $COVERAGE_PATH/$SUBTEST.info
- cd ${CI_PROJECT_DIR}
- cmake --preset ci-coverage
-DCOVERAGE_OUTPUT_DIR=${COVERAGE_PATH}
-DCOVERAGE_CAPTURE_TRACEFILE=${COVERAGE_PATH}/${SUBTEST}.info
## Since the pipeline recreates the source tree, the access times for .gcno
## files are newer than those of .gcda files. This makes gcov emit a
## warning for each file which slows it down. Updating the timestamps
## avoids this
- find ${BUILD_PATH} -name "*.gcno" -exec touch {} \;
- cmake --build ${BUILD_PATH} --target coverage-capture
# fix relative paths so that GitLab can find the correct files
after_script:
- perl -i.orig
-pe 's%file="(.*?)"%file="tests/integration/$1"%;'
-pe 's%(../)+install/share/gkfs/%%g;'
${BUILD_PATH}/tests/integration/report.xml
artifacts:
expire_in: 1 week
when: always
paths:
- ${BUILD_PATH}
reports:
junit: ${BUILD_PATH}/tests/integration/report.xml
## == unit tests for gkfs ==================
gkfs:unit:
stage: test
image: gekkofs/testing:0.9.2
needs: ['gkfs']
script:
## Add path to mkfs.kreon
- export PATH=${PATH}:/usr/local/bin
## run actual tests
- cd ${CI_PROJECT_DIR}
- ctest --test-dir ${BUILD_PATH}
-j $(nproc)
-L unit::all
--output-junit ${BUILD_PATH}/tests/unit/report.xml
## capture coverage information for this test and write it to
## $COVERAGE_PATH/unit.info
- cd ${CI_PROJECT_DIR}
- cmake --preset ci-coverage
-DCOVERAGE_OUTPUT_DIR=${COVERAGE_PATH}
-DCOVERAGE_CAPTURE_TRACEFILE=${COVERAGE_PATH}/unit.info
## Since the pipeline recreates the source tree, the access times for .gcno
## files are newer than those of .gcda files. This makes gcov emit a
## warning for each file which slows it down. Updating the timestamps
## avoids this
- find ${BUILD_PATH} -name "*.gcno" -exec touch {} \;
- cmake --build ${BUILD_PATH} --target coverage-capture
artifacts:
expire_in: 1 week
paths:
- ${BUILD_PATH}
reports:
junit: ${BUILD_PATH}/tests/unit/report.xml
################################################################################
## Generation of documentation
################################################################################
documentation:
stage: docs
image: gekkofs/docs:0.9.2
needs: []
rules:
# we only build the documentation automatically if we are on the
# `master` branch, but since we also would like to test the documentation
# against our CI, we allow developers to also build it manually
- if: '$CI_MERGE_REQUEST_EVENT_TYPE == "detached"'
when: never
- if: '$CI_MERGE_REQUEST_ID != ""'
when: manual
allow_failure: true
- if: '$CI_COMMIT_REF_SLUG == "master"'
when: always
script:
- cmake --preset ci-docs
- cmake --build ${BUILD_PATH} --target docs
artifacts:
paths:
- ${BUILD_PATH}/docs
expire_in: 2 weeks
################################################################################
## Generation of code coverage reports
################################################################################
coverage:
stage: report
image: gekkofs/testing:0.9.2
needs: [ 'coverage:zerocount', 'gkfs:integration', 'gkfwd:integration',
'gkfs:unit' ]
script:
- cd ${CI_PROJECT_DIR}
- cmake
--preset ci-coverage
-DCOVERAGE_OUTPUT_DIR=${COVERAGE_PATH}
-DCOVERAGE_UNIFIED_TRACEFILE=${COVERAGE_PATH}/coverage.info
-DCOVERAGE_HTML_REPORT_DIRECTORY=${COVERAGE_PATH}/coverage_html
-DCOVERAGE_XML_REPORT=${COVERAGE_PATH}/coverage-cobertura.xml
- cmake
--build ${BUILD_PATH}
--target coverage-html
--target coverage-cobertura
--target coverage-summary
coverage: '/lines[\.]+\: (\d+\.\d+)\%/'
artifacts:
reports:
coverage_report:
coverage_format: cobertura
path: ${COVERAGE_PATH}/coverage-cobertura.xml
paths:
- ${COVERAGE_PATH}
expire_in: 2 weeks
################################################################################
## Deployment of documentation and reports
################################################################################
#
## for the deploy stage to work as expected, we need to run rsync with the
## appropriate credentials provided by sysadmins. For that, the specific values
## for DEPLOY_KEY_FILE, DEPLOY_USERNAME, DEPLOY_GROUP, DEPLOY_SERVER and
## DEPLOY_PATH must be defined as protected variables.
deploy:
image: bscstorage/deployer
stage: deploy
needs: [ 'documentation' ]
only:
- master
script:
- chmod 400 ${DEPLOY_KEY_FILE}
- rsync -e "ssh -i ${DEPLOY_KEY_FILE}"
-avzr
--delete
--chown=${DEPLOY_USERNAME}:${DEPLOY_GROUP}
${BUILD_PATH}/docs/sphinx/sphinx_docs/
${DEPLOY_USERNAME}@${DEPLOY_SERVER}:${DEPLOY_PATH}