-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy path.gitlab-ci.yml
604 lines (545 loc) · 15.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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
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
timeout: 1h
interruptible: true
.notification_job_template: ¬ification_job_definition
<<: *global_job_definition
variables:
GIT_SUBMODULE_STRATEGY: none
dependencies: []
timeout: 15m
interruptible: false
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-python3: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/ubuntu-python3: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
- 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
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
maxset:
<<: *global_job_definition
stage: build
script:
- export myconfig=maxset with_coverage=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
no_rotation:
<<: *global_job_definition
stage: build
script:
- export myconfig=no_rotation with_coverage=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
### Builds with different Distributions
debian:10:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/debian-python3:10
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
- 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
- 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
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
#ubuntu:1604 not needed: used in ubuntu-python3: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
cuda10-maxset:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-10.1
script:
- export myconfig=maxset with_coverage=false test_timeout=900 srcdir=${CI_PROJECT_DIR}
- export cmake_params="-DIPYTHON_EXECUTABLE=$(which jupyter)"
- bash maintainer/CI/build_cmake.sh
artifacts:
paths:
- build/
expire_in: 1 week
tags:
- docker
- linux
- cuda
cuda9-maxset:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-9.0
script:
- export myconfig=maxset with_coverage=true test_timeout=900 srcdir=${CI_PROJECT_DIR}
- sed -i 's/ or "DISPLAY" in os.environ/ or True/' src/python/espressomd/visualization.pyx
- bash maintainer/CI/build_cmake.sh
artifacts:
paths:
- build/
expire_in: 1 week
when: on_success
tags:
- docker
- linux
- cuda
tutorials-samples-maxset:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-10.1
script:
- export myconfig=maxset with_coverage=false 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/ubuntu-python3:cuda-10.1
script:
- export myconfig=default with_coverage=false 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/ubuntu-python3:cuda-10.1
script:
- export myconfig=empty with_coverage=false make_check=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=true test_timeout=1200 with_scafacos=false
- 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/ubuntu-python3:cuda-10.1
script:
- export myconfig=maxset with_coverage=false 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
installation:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-10.1
script:
- export myconfig=maxset with_coverage=false make_check=false
- export srcdir=${CI_PROJECT_DIR} test_timeout=1800
- bash maintainer/CI/build_cmake.sh
- cd build
# install ESPResSo (in CI, pypresso will run up to 5 times slower when
# located outside the build directory, hence the larger timeout value)
- make install
# get path of installed files
- CI_INSTALL_DIR="/tmp/espresso-unit-tests"
- CI_INSTALL_PYTHON_PATH=$(dirname $(find "${CI_INSTALL_DIR}/lib" -name espressomd))
# deploy object-in-fluid module
- cp -r "src/python/object_in_fluid" "${CI_INSTALL_PYTHON_PATH}/object_in_fluid"
# run all tests with the installed files
- sed -i "s|$(pwd)/pypresso|${CI_INSTALL_DIR}/bin/pypresso|" testsuite/{python,scripts/samples,scripts/tutorials}/CTestTestfile.cmake
# skip long tests
- sed -i "/tutorial_11-ferrofluid_3/d" testsuite/scripts/tutorials/CTestTestfile.cmake
- make -j2 check_python_skip_long
- make -j2 check_samples
- make -j2 check_tutorials
tags:
- docker
- linux
- cuda
timeout: 3h
when: manual
empty:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/clang-python3:6.0
script:
- export myconfig=empty with_static_analysis=true
- 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/ubuntu-python3:wo-dependencies
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-python3: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
- bash maintainer/CI/build_cmake.sh
timeout: 6h
tags:
- docker
- linux
when: manual
ubuntu:arm64:
<<: *arch_definition
ubuntu:armhf:
<<: *arch_definition
ubuntu:i386:
<<: *arch_definition
timeout: 1h
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
- 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 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/clang-python3:6.0
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
timeout: 2h
tags:
- docker
- linux
- cuda
- ptrace
intel:18:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/intel-python3:18
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
when: manual
check_sphinx:
<<: *global_job_definition
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-10.1
needs:
- cuda10-maxset
when: on_success
script:
- sed -i 's/ or "DISPLAY" in os.environ/ or True/' ${CI_PROJECT_DIR}/src/python/espressomd/visualization.pyx
- cd ${CI_PROJECT_DIR}/build
- make -t && rm src/python/espressomd/visualization.* && make sphinx
- bash ../maintainer/CI/doc_warnings.sh
artifacts:
paths:
- build/doc/sphinx
expire_in: 1 week
tags:
- docker
- linux
- cuda
run_tutorials:
<<: *global_job_definition
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-10.1
needs:
- cuda10-maxset
when: on_success
script:
- cd ${CI_PROJECT_DIR}/build
- make -t
- make tutorials
- make -j1 tutorials_html
artifacts:
paths:
- build/doc/tutorials
expire_in: 1 week
only:
variables:
- $CI_COMMIT_REF_NAME == "python" && $CI_DEPLOY_TUTORIALS
tags:
- docker
- linux
- cuda
run_doxygen:
<<: *global_job_definition
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-9.0
needs:
- cuda9-maxset
when: on_success
only:
- python
script:
- cd ${CI_PROJECT_DIR}/build
- make -t && make doxygen
artifacts:
paths:
- build/doc/doxygen
expire_in: 1 week
tags:
- docker
- linux
check_cuda_maxset_no_gpu:
<<: *global_job_definition
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-9.0
when: on_success
needs:
- cuda9-maxset
script:
- export CUDA_VISIBLE_DEVICES=""
- cd ${CI_PROJECT_DIR}/build
- make -t && make check
tags:
- docker
- linux
check_with_odd_no_of_processors:
<<: *global_job_definition
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:cuda-9.0
when: on_success
needs:
- cuda9-maxset
script:
- cd ${CI_PROJECT_DIR}/build
- cmake -DTEST_NP=3 .
- make -t && make check_python_parallel_odd
tags:
- docker
- linux
- cuda
.deploy_base:
<<: *global_job_definition
stage: deploy
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3: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'
interruptible: false
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" ./ espresso@elk.icp.uni-stuttgart.de:/home/espresso/public_html/html/doc
deploy_doxygen_documentation:
extends: .deploy_base
dependencies:
- run_doxygen
script:
- cd ${CI_PROJECT_DIR}/build/doc/doxygen/html &&
rsync -avz --delete -e "ssh -i ${HOME}/.ssh/espresso_rsa" ./ espresso@elk.icp.uni-stuttgart.de:/home/espresso/public_html/html/dox
deploy_tutorials:
extends: .deploy_base
dependencies:
- run_tutorials
script:
- cd ${CI_PROJECT_DIR}/build/doc/tutorials
- ${CI_PROJECT_DIR}/maintainer/CI/deploy_tutorials.py
- mkdir www &&
rsync -a --files-from=deploy_list.txt ./ www &&
rsync -avz --delete -e "ssh -i ${HOME}/.ssh/espresso_rsa" www/ espresso@elk.icp.uni-stuttgart.de:/home/espresso/public_html/html/tutorials_html
only:
variables:
- $CI_COMMIT_REF_NAME == "python" && $CI_DEPLOY_TUTORIALS
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