forked from espressomd/espresso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
513 lines (457 loc) · 12.5 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
512
513
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:18.04
stages:
- permission
- prepare
- build
- additional_checks
- deploy
- result
.global_job_template: &global_job_definition
except:
- staging.tmp
- trying.tmp
.notification_job_template: ¬ification_job_definition
<<: *global_job_definition
variables:
GIT_SUBMODULE_STRATEGY: none
dependencies: []
tags:
- linux
variables:
GIT_SUBMODULE_STRATEGY: recursive
CCACHE_DIR: /cache
CCACHE_MAXSIZE: 100G
with_ccache: "true"
check_permission:
<<: *notification_job_definition
stage: permission
only:
- /.*external.*/
when: manual
allow_failure: false
script:
- exit 0
status_pending:
<<: *notification_job_definition
stage: prepare
script: bash maintainer/gh_post_status.sh pending
style:
<<: *global_job_definition
stage: prepare
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/clang:6.0
dependencies: []
before_script:
- git submodule deinit .
script:
- maintainer/CI/fix_style.sh
- git --no-pager diff > style.patch
- git diff-index --quiet HEAD -- || (echo "Failed style check. Download $CI_JOB_URL/artifacts/raw/style.patch to see which changes are necessary." && exit 1)
- echo "Passed style check"
tags:
- docker
- linux
variables:
GIT_SUBMODULE_STRATEGY: none
artifacts:
paths:
- style.patch
expire_in: 1 week
when: on_failure
style_doxygen:
<<: *global_job_definition
stage: prepare
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
dependencies: []
script:
- mkdir build
- cd build
- cp ../maintainer/configs/maxset.hpp myconfig.hpp
- cmake ..
- bash ../maintainer/CI/dox_warnings.sh
tags:
- docker
- linux
### Builds without CUDA
default:
<<: *global_job_definition
stage: build
script:
- export with_cuda=false myconfig=default with_coverage=true python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
min_boost:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:min_boost
script:
- export with_cuda=false myconfig=maxset python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
maxset:
<<: *global_job_definition
stage: build
script:
- export myconfig=maxset with_coverage=true python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
no_rotation:
<<: *global_job_definition
stage: build
script:
- export myconfig=no_rotation with_coverage=true python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
nocheckmaxset:
<<: *global_job_definition
stage: build
script:
- export with_cuda=false myconfig=nocheck-maxset python_version=3 make_check=false
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
### Builds with different Distributions
#debian:8 removed: similar to ubuntu:1404
debian:9:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/$CI_JOB_NAME
script:
- export with_cuda=false
- export myconfig=maxset make_check=false
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
opensuse:15.1:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/$CI_JOB_NAME
script:
- export with_cuda=false myconfig=maxset make_check=false python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
centos:7:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/centos-python3:7
script:
- export with_cuda=false myconfig=maxset make_check=true python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
fedora:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/centos-python3:next
script:
- export with_cuda=false myconfig=maxset make_check=false python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
#ubuntu:1604 not needed: used in cuda:9.0
#ubuntu:1804 not needed: default used in non-CUDA builds
#ubuntu:1904 not needed: base image for builds on different architectures
### Builds with CUDA
cuda-maxset:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
script:
- export myconfig=maxset with_coverage=true python_version=3 test_timeout=900 srcdir=${CI_PROJECT_DIR}
- bash maintainer/CI/build_cmake.sh
artifacts:
paths:
- build/
expire_in: 1 week
tags:
- docker
- linux
- cuda
tutorials-samples-maxset:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:tutorials
script:
- export myconfig=maxset with_coverage=false python_version=3 make_check=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=true test_timeout=1200
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
tutorials-samples-default:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:tutorials
script:
- export myconfig=default with_coverage=false python_version=3 make_check=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=true test_timeout=1200
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
only:
- schedules
tutorials-samples-empty:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:tutorials
script:
- export myconfig=empty with_coverage=false python_version=3 make_check=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=true test_timeout=1200
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
only:
- schedules
tutorials-samples-no-gpu:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:tutorials
script:
- export myconfig=maxset with_coverage=false python_version=3 make_check=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=true test_timeout=1200 hide_gpu=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
only:
- schedules
# Test that non-gpu methods work when building with Cuda and no gpu is present
# In case a GPU is present on the runner, it is hidden by setting
# CUDA_VISIBLE_DEVICES=""
cuda-no-gpu:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
script:
- export myconfig=maxset hide_gpu=true python_version=3 test_timeout=900
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
empty:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
script:
- export myconfig=empty python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
ubuntu:wo-dependencies:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/$CI_JOB_NAME
script:
- export myconfig=maxset make_check=false
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
### Builds with ROCm
rocm-maxset:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/rocm:latest
script:
- export myconfig=maxset
- bash maintainer/CI/build_cmake.sh
tags:
- amdgpu
### Builds on different architectures
.arch_template: &arch_definition
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/$CI_JOB_NAME
script:
- export with_cuda=false test_timeout=900 check_skip_long=true
- export OMPI_MCA_btl_vader_single_copy_mechanism=none
- export myconfig=maxset python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
only:
- schedules
ubuntu:arm64:
<<: *arch_definition
ubuntu:armhf:
<<: *arch_definition
ubuntu:i386:
<<: *arch_definition
only:
- branches
- tags
ubuntu:ppc64le:
<<: *arch_definition
ubuntu:s390x:
<<: *arch_definition
variables:
LD_BIND_NOW: none
### Builds with OS X
osx:
<<: *global_job_definition
stage: build
script:
- export with_ccache=false myconfig=maxset with_cuda=false python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- mac
osx-cuda:
<<: *global_job_definition
stage: build
script:
- export with_ccache=false myconfig=maxset with_cuda=true python_version=3 make_check=false
- bash maintainer/CI/build_cmake.sh
tags:
- mac
### Builds with different compilers
clang:6.0:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/$CI_JOB_NAME
script:
- export myconfig=maxset with_coverage=false with_static_analysis=true with_asan=true with_ubsan=true test_timeout=900
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
- ptrace
intel:18:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/$CI_JOB_NAME
script:
- export myconfig=maxset with_coverage=false I_MPI_SHM_LMT=shm
- export cxx_flags=-O2
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
- icp
check_sphinx:
<<: *global_job_definition
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
dependencies:
- cuda-maxset
when: on_success
script:
- cd ${CI_PROJECT_DIR}/build
- make -t && make sphinx
- bash ../maintainer/CI/doc_warnings.sh
artifacts:
paths:
- build/doc/sphinx
expire_in: 1 week
tags:
- docker
- linux
- cuda
check_doxygen:
<<: *global_job_definition
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
dependencies:
- cuda-maxset
when: on_success
script:
- cd ${CI_PROJECT_DIR}/build
- make -t && make doxygen
artifacts:
paths:
- build/doc/doxygen
expire_in: 1 week
tags:
- docker
- linux
- cuda
check_with_odd_no_of_processors:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
when: on_success
script:
- export myconfig=maxset with_coverage=true python_version=3 build_procs=3 check_procs=3 check_odd_only=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
.deploy_base:
<<: *global_job_definition
stage: deploy
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
only:
- python
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- ssh-add <(echo "$SSH_PRIVATE_KEY")
- mkdir -p ${HOME}/.ssh && chmod 700 ${HOME}/.ssh
- echo "$SSH_PRIVATE_KEY" > ${HOME}/.ssh/espresso_rsa && chmod 600 ${HOME}/.ssh/espresso_rsa
- echo "$SSH_PUBLIC_KEY" > ${HOME}/.ssh/espresso_rsa.pub && chmod 600 ${HOME}/.ssh/espresso_rsa.pub
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
tags:
- docker
- linux
- icp
deploy_sphinx_documentation:
extends: .deploy_base
dependencies:
- check_sphinx
script:
- cd ${CI_PROJECT_DIR}/build/doc/sphinx/html &&
rsync -avz --delete -e "ssh -i ${HOME}/.ssh/espresso_rsa" ./ [email protected]:/home/espresso/public_html/html/doc
deploy_doxygen_documentation:
extends: .deploy_base
dependencies:
- check_doxygen
script:
- cd ${CI_PROJECT_DIR}/build/doc/doxygen/html &&
rsync -avz --delete -e "ssh -i ${HOME}/.ssh/espresso_rsa" ./ [email protected]:/home/espresso/public_html/html/dox
status_success:
<<: *notification_job_definition
stage: result
script: bash maintainer/gh_post_status.sh success
when: on_success
status_failure:
<<: *notification_job_definition
stage: result
script: bash maintainer/gh_post_status.sh failure
when: on_failure
notify_success:
<<: *notification_job_definition
stage: result
script: bash maintainer/gh_close_issue.sh
when: on_success
only:
- python
notify_failure:
<<: *notification_job_definition
stage: result
script: bash maintainer/gh_create_issue.sh
when: on_failure
only:
- python