-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
511 lines (448 loc) · 13.2 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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
variables:
EOS_PATH: "/eos/project/a/allpix-squared/www/"
DOCKER_FILE: etc/docker/Dockerfile
stages:
- compilation
- testing
- formatting
- performance
- documentation
- packaging
- deployment
#######################
# Compilation targets #
#######################
# Hidden key to define the default compile job:
.compile:
stage: compilation
tags:
- docker
script:
- mkdir build
- cd build
- cmake -GNinja -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_ALL_MODULES=ON -DCMAKE_BUILD_TYPE=RELEASE -DROOT_DIR=$ROOTSYS -DEigen3_DIR=$Eigen3_DIR -DLCIO_DIR=$LCIO_DIR ..
- ninja
- ninja install
artifacts:
paths:
- build
- bin
- lib
expire_in: 24 hour
cmp:slc6-gcc:
extends: .compile
image: gitlab-registry.cern.ch/sft/docker/slc6:latest
before_script:
- export COMPILER_TYPE="gcc"
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
# Ensure that our LXPLUS setup script is functional:
cmp:lxplus-gcc:
extends: .compile
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- export COMPILER_TYPE="gcc"
- source etc/scripts/setup_lxplus.sh
script:
- mkdir build
- cd build
- cmake -GNinja -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_ALL_MODULES=ON -DCMAKE_BUILD_TYPE=RELEASE -DLCIO_DIR=$LCIO_DIR ..
- ninja
- ninja install
cmp:cc7-docker:
extends: .compile
image:
name: gitlab-registry.cern.ch/allpix-squared/allpix-squared/allpix-squared-deps
entrypoint: [""]
before_script:
- source scl_source enable devtoolset-7 || echo " "
script:
- mkdir build
- cd build
- cmake3 -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_ALL_MODULES=ON -DCMAKE_BUILD_TYPE=RELEASE -DROOT_DIR=$ROOTSYS -DEigen3_DIR=$Eigen3_DIR ..
- make
- make install
cmp:cc7-gcc:
extends: .compile
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- export COMPILER_TYPE="gcc"
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
cmp:cc7-llvm:
extends: .compile
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- export COMPILER_TYPE="llvm"
- source .gitlab/ci/init_x86_64.sh
cmp:mac1014-clang:
extends: .compile
tags:
- mac
before_script:
- source .gitlab/ci/init_mac.sh
- source .gitlab/ci/load_deps.sh
script:
- mkdir build
- cd build
- cmake -GNinja -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_ALL_MODULES=ON -DCMAKE_BUILD_TYPE=RELEASE -DGeant4_DIR=$G4LIB -DROOT_DIR=$ROOTSYS -DEigen3_DIR=$Eigen3_DIR -DCMAKE_USE_RELATIVE_PATHS=TRUE ..
- ninja
- ninja install
############################
# Format and Lint Checking #
############################
# Hidden key to define the basis for linting and formatting:
.format:
stage: formatting
tags:
- docker
before_script:
- export COMPILER_TYPE="llvm"
- source .gitlab/ci/init_x86_64.sh
fmt:cc7-llvm-format:
extends: .format
dependencies:
- cmp:cc7-llvm
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
script:
- cd build/
- ninja check-format
fmt:cc7-llvm-lint:
extends: .format
dependencies:
- cmp:cc7-llvm
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
script:
- cd build/
- ninja check-lint
##############
# Unit tests #
##############
.test:
stage: testing
tags:
- docker
.testmod:
extends: .test
script:
- cd build/
- ctest -R test_modules --output-on-failure -j4
.testcore:
extends: .test
script:
- cd build/
- ctest -R test_core --output-on-failure -j4
# Test if examples still execute fine:
examples:
extends: .test
dependencies:
- cmp:cc7-gcc
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
script:
- cd build/
- ctest -R examples --output-on-failure -j4
# SLC 6
mod:slc6-gcc:
extends: .testmod
dependencies:
- cmp:slc6-gcc
image: gitlab-registry.cern.ch/sft/docker/slc6:latest
before_script:
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
core:slc6-gcc:
extends: .testcore
dependencies:
- cmp:slc6-gcc
image: gitlab-registry.cern.ch/sft/docker/slc6:latest
before_script:
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
mod:lxplus-gcc:
extends: .testmod
dependencies:
- cmp:lxplus-gcc
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- source etc/scripts/setup_lxplus.sh
core:lxplus-gcc:
extends: .testcore
dependencies:
- cmp:lxplus-gcc
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- source etc/scripts/setup_lxplus.sh
# CentOS 7
core:cc7-docker:
extends: .testcore
dependencies:
- cmp:cc7-docker
image:
name: gitlab-registry.cern.ch/allpix-squared/allpix-squared/allpix-squared-deps
entrypoint: [""]
before_script:
- source scl_source enable devtoolset-7 || echo " "
mod:cc7-gcc:
extends: .testmod
dependencies:
- cmp:cc7-gcc
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
core:cc7-gcc:
extends: .testcore
dependencies:
- cmp:cc7-gcc
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
mod:cc7-llvm:
extends: .testmod
dependencies:
- cmp:cc7-llvm
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- export COMPILER_TYPE="llvm"
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
core:cc7-llvm:
extends: .testcore
dependencies:
- cmp:cc7-llvm
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- export COMPILER_TYPE="llvm"
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
# Mac OS X
mod:mac1014-clang:
extends: .testmod
tags:
- mac
dependencies:
- cmp:mac1014-clang
before_script:
- source .gitlab/ci/init_mac.sh
- source .gitlab/ci/load_deps.sh
core:mac1014-clang:
extends: .testcore
tags:
- mac
dependencies:
- cmp:mac1014-clang
before_script:
- source .gitlab/ci/init_mac.sh
- source .gitlab/ci/load_deps.sh
#####################
# Performance tests #
#####################
# Performance tests are only run on Mac OS X and on a native CentOS7 installation. Otherwise we have no control
# about how many CI jobs are performed on the same machine in parallel via the hypervisor.
.testperf:
stage: performance
tags:
- benchmark
script:
- cd build/
- ctest -R test_performance --output-on-failure
allow_failure: true
retry: 1
# CentOS7
perf:cc7-gcc:
extends: .testperf
dependencies:
- cmp:cc7-gcc
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
# Temporarily hide LLVM job, have to find out why this is so slow.
.perf:cc7-llvm:
extends: .testperf
dependencies:
- cmp:cc7-llvm
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
before_script:
- export COMPILER_TYPE="llvm"
- source .gitlab/ci/init_x86_64.sh
# Mac OS X
# Temporarily disable Mac OS X performance until tests are adapted to actual performance
.perf:mac1014-clang:
extends: .testperf
dependencies:
- cmp:mac1014-clang
before_script:
- source .gitlab/ci/init_mac.sh
- source .gitlab/ci/load_deps.sh
#############################
# Documentation Compilation #
#############################
.doc:
stage: documentation
tags:
- docker
artifacts:
paths:
- public
expire_in: 24 hour
# Compile Doxygen reference
cmp:doxygen:
extends: .doc
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
dependencies: []
script:
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
- mkdir -p public/usermanual
- mkdir build
- cd build
- cmake -DBUILD_DOCS_ONLY=ON ..
- make reference
- mv reference/html ../public/reference
# Compile LaTeX user manual:
cmp:usermanual:
extends: .doc
image: gitlab-registry.cern.ch/clicdp/publications/templates/custom_ci_worker:fedora-latex-latest
dependencies: []
script:
- mkdir -p public/usermanual
- mkdir build
- cd build
- cmake -DBUILD_DOCS_ONLY=ON ..
- make pdf
- make html
- mv usermanual/*.html ../public/usermanual
- mv usermanual/*.css ../public/usermanual
- mv usermanual/logo.png ../public/usermanual
- mv usermanual/allpix-manual.pdf ../public/usermanual
- mkdir -p ../public/usermanual/usermanual/
- mkdir -p ../public/usermanual/usermanual/html/
- mv usermanual/usermanual/html/css ../public/usermanual/usermanual/html/
- mv usermanual/usermanual/html/js ../public/usermanual/usermanual/html/
- mv usermanual/usermanual/figures ../public/usermanual/usermanual/
################################
# Packaging of Binary Tarballs #
################################
.pack:
stage: packaging
tags:
- docker
only:
- tags
- schedules
script:
- mkdir -p public/releases
- cd build
- cmake -GNinja -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/tmp ..
- ninja package
- mv *.tar.gz ../public/releases
artifacts:
paths:
- public
expire_in: 24 hour
pkg:slc6-gcc:
extends: .pack
image: gitlab-registry.cern.ch/sft/docker/slc6:latest
dependencies:
- cmp:slc6-gcc
before_script:
- export COMPILER_TYPE="gcc"
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
pkg:cc7-gcc:
extends: .pack
image: gitlab-registry.cern.ch/sft/docker/centos7:latest
dependencies:
- cmp:cc7-gcc
before_script:
- export COMPILER_TYPE="gcc"
- source .gitlab/ci/init_x86_64.sh
- source .gitlab/ci/load_deps.sh
############################
# Documentation Deployment #
############################
# Automatically deploy documentation to the website
# Deployment job only executed for new tag pushs, not for every commit.
deploy-documentation:
stage: deployment
tags:
- docker
variables:
GIT_STRATEGY: none
# Only run for new tags:
only:
- tags
dependencies:
- cmp:usermanual
- cmp:doxygen
# Docker image with tools to deploy to EOS
image: gitlab-registry.cern.ch/ci-tools/ci-web-deployer:latest
script:
- deploy-eos
# do not run any globally defined before_script or after_script for this step
before_script: []
after_script: []
deploy-eos:
stage: deployment
tags:
- docker
variables:
GIT_STRATEGY: none
# Only run for new tags:
only:
- tags
- schedules # Only execute this on scheduled "nightly" pipelines
dependencies:
- pkg:cc7-gcc
- pkg:slc6-gcc
# Docker image with tools to deploy to EOS
image: gitlab-registry.cern.ch/ci-tools/ci-web-deployer:latest
script:
- deploy-eos
# do not run any globally defined before_script or after_script for this step
before_script: []
after_script: []
deploy-cvmfs:
stage: deployment
dependencies:
- pkg:cc7-gcc
- pkg:slc6-gcc
tags:
- cvmfs-deploy
only:
- tags
- schedules # Only execute this on scheduled "nightly" pipelines
script:
- ./.gitlab/ci/download_artifacts.py $API_TOKEN $CI_PROJECT_ID $CI_PIPELINE_ID
- export RUNNER_LOCATION=$(pwd)
- if [ -z ${CI_COMMIT_TAG} ]; then export BUILD_PATH='latest'; else export BUILD_PATH=${CI_COMMIT_TAG}; fi
- sudo -u cvclicdp -i $RUNNER_LOCATION/.gitlab/ci/gitlab_deploy.sh $RUNNER_LOCATION $BUILD_PATH
- rm -f allpix-squared-*.tar.gz
retry: 1
deploy-docker-latest:
stage: deployment
tags:
- docker-image-build
dependencies: []
only:
- schedules # Only execute this on scheduled "nightly" pipelines
script:
- "echo" # unused but this line is required by GitLab CI
variables:
TO: gitlab-registry.cern.ch/allpix-squared/allpix-squared
deploy-docker-tag:
stage: deployment
tags:
- docker-image-build
dependencies: []
only:
- tags
script:
- "echo" # unused but this line is required by GitLab CI
variables:
TO: gitlab-registry.cern.ch/allpix-squared/allpix-squared:${CI_COMMIT_TAG}