forked from espressomd/espresso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
574 lines (525 loc) · 14.4 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
image: docker.pkg.github.com/espressomd/docker/ubuntu-20.04:e583d4b2eb8eedd10068957f952bd67008475ee5
stages:
- 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: 40m
interruptible: false
tags:
- linux
variables:
GIT_SUBMODULE_STRATEGY: recursive
CCACHE_DIR: /cache
CCACHE_MAXSIZE: 100G
with_ccache: "true"
status_pending:
<<: *notification_job_definition
stage: prepare
script: bash maintainer/gh_post_status.sh pending
style:
<<: *global_job_definition
stage: prepare
dependencies: []
before_script:
- git submodule deinit .
script:
- maintainer/CI/fix_style.sh
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
dependencies: []
script:
- mkdir build
- cd build
- cp ../maintainer/configs/maxset.hpp myconfig.hpp
- cmake .. -DWITH_CUDA=ON -DWITH_SCAFACOS=ON
- sh ../maintainer/CI/dox_warnings.sh
tags:
- docker
- linux
### Builds without CUDA
default:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-9'
CXX: 'g++-9'
script:
- export with_cuda=false myconfig=default with_coverage=true
- export with_scafacos=true with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
maxset:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-9'
CXX: 'g++-9'
script:
- export with_cuda=false myconfig=maxset with_coverage=true
- export with_scafacos=true with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
no_rotation:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-9'
CXX: 'g++-9'
script:
- export with_cuda=false myconfig=no_rotation with_coverage=true with_scafacos=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
ubuntu:wo-dependencies:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/ubuntu-wo-dependencies:e583d4b2eb8eedd10068957f952bd67008475ee5
script:
- export myconfig=maxset with_cuda=false make_check_unit_tests=false make_check_python=false
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
### Builds with different distributions
debian:10:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/debian:d496478230db4e5c286680e3bdc1621af1fccffc
script:
- export with_cuda=false myconfig=maxset make_check_python=false with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
opensuse:15.2:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/opensuse:d496478230db4e5c286680e3bdc1621af1fccffc
script:
- export with_cuda=false myconfig=maxset make_check_python=false with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
centos:7:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/centos:446ff604bbfa63f30ddb462697fa0d0dc2630460
script:
- export with_cuda=false myconfig=maxset make_check_python=true with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
fedora:32:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/fedora:fc7628d32de0fce605976ba9edebe7eff186e618
script:
- export with_cuda=false myconfig=maxset make_check_python=false with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
fedora:latest:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/fedora:latest_base
script:
- export with_cuda=false myconfig=maxset make_check_python=false
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
when: manual
### Builds with CUDA
clang-sanitizer:
<<: *global_job_definition
stage: build
variables:
CC: 'clang-9'
CXX: 'clang++-9'
script:
- export myconfig=maxset with_cuda=true with_cuda_compiler=clang with_coverage=false
- export with_static_analysis=true test_timeout=900 with_asan=true with_ubsan=true
- export with_scafacos=true with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
timeout: 2h
tags:
- docker
- linux
- cuda
cuda11-maxset:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/cuda:e583d4b2eb8eedd10068957f952bd67008475ee5
variables:
CC: 'gcc-9'
CXX: 'g++-9'
script:
- export myconfig=maxset with_cuda=true with_coverage=false test_timeout=900 srcdir=${CI_PROJECT_DIR}
- export with_scafacos=true with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
only:
- schedules
cuda10-maxset:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-8'
CXX: 'g++-8'
script:
- export myconfig=maxset with_cuda=true with_coverage=false test_timeout=900 srcdir=${CI_PROJECT_DIR}
- export with_scafacos=true with_stokesian_dynamics=true
- 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: docker.pkg.github.com/espressomd/docker/ubuntu-18.04:8a7d258889d87dcc9c96a200784b30b532d45b33
variables:
CC: 'gcc-6'
CXX: 'g++-6'
GCOV: 'gcov-6'
script:
- export myconfig=maxset with_cuda=true with_coverage=true test_timeout=900 srcdir=${CI_PROJECT_DIR}
- export with_scafacos=true with_stokesian_dynamics=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
tutorials-samples-maxset:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-8'
CXX: 'g++-8'
script:
- export myconfig=maxset with_cuda=true with_coverage=false with_scafacos=true make_check_unit_tests=false make_check_python=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=false test_timeout=1200
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
tutorials-samples-default:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-8'
CXX: 'g++-8'
script:
- export myconfig=default with_cuda=true with_coverage=false with_scafacos=true make_check_unit_tests=false make_check_python=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=false test_timeout=1200
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
only:
- schedules
tutorials-samples-empty:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-8'
CXX: 'g++-8'
script:
- export myconfig=empty with_cuda=true with_coverage=false with_scafacos=true make_check_unit_tests=false make_check_python=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=false 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
variables:
CC: 'gcc-8'
CXX: 'g++-8'
script:
- export myconfig=maxset with_cuda=true with_coverage=false with_scafacos=true make_check_unit_tests=false make_check_python=false
- export make_check_tutorials=true make_check_samples=true make_check_benchmarks=false test_timeout=1200 hide_gpu=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
only:
- schedules
installation:
<<: *global_job_definition
stage: build
variables:
CC: 'gcc-8'
CXX: 'g++-8'
script:
- export myconfig=maxset with_cuda=true with_coverage=false make_check_unit_tests=false make_check_python=false
- export with_scafacos=true with_stokesian_dynamics=true
- export srcdir=${CI_PROJECT_DIR} build_type=Release
- bash maintainer/CI/build_cmake.sh
- cd build
- 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
- make -j2 check_python
- make -j2 check_samples
- make -j2 check_tutorials
tags:
- docker
- linux
- cuda
when: manual
empty:
<<: *global_job_definition
stage: build
variables:
CC: 'clang-9'
CXX: 'clang++-9'
script:
- export myconfig=empty with_cuda=true with_cuda_compiler=clang with_static_analysis=true
- export with_scafacos=false with_stokesian_dynamics=false
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
### Builds with ROCm
rocm-maxset:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/rocm:d496478230db4e5c286680e3bdc1621af1fccffc
script:
- export myconfig=maxset with_cuda=true with_cuda_compiler=hip
- export with_stokesian_dynamics=false
- bash maintainer/CI/build_cmake.sh
tags:
- amdgpu
rocm:latest:
<<: *global_job_definition
stage: build
image: docker.pkg.github.com/espressomd/docker/rocm:latest_base
script:
- export myconfig=maxset with_cuda=true with_cuda_compiler=hip
- export with_stokesian_dynamics=false
- bash maintainer/CI/build_cmake.sh
tags:
- amdgpu
when: manual
### Builds with different compilers
intel:19:
<<: *global_job_definition
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/intel-python3:19
script:
- export myconfig=maxset with_cuda=true with_coverage=false I_MPI_SHM_LMT=shm
- export cmake_params="-DCMAKE_CXX_FLAGS=-O2"
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
- cuda
- icp
when: manual
check_sphinx:
<<: *global_job_definition
stage: additional_checks
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
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
needs:
- cuda10-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
when: on_success
needs:
- cuda10-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
when: on_success
needs:
- cuda10-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
only:
- python
before_script:
- 'which ssh-agent && eval $(ssh-agent -s) || exit 1'
- 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" ./ [email protected]:/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" ./ [email protected]:/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/ [email protected]:/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