forked from espressomd/espresso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
348 lines (310 loc) · 8.14 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
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu:18.04
stages:
- permission
- prepare
- build
- additional_checks
- deploy
- result
variables:
GIT_SUBMODULE_STRATEGY: recursive
CCACHE_DIR: /cache
CCACHE_MAXSIZE: 100G
with_ccache: "true"
check_permission:
stage: permission
only:
- /.*external.*/
when: manual
allow_failure: false
script:
- exit 0
tags:
- linux
status_pending:
stage: prepare
script: bash maintainer/gh_post_status.sh pending
tags:
- linux
style:
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
### Builds without CUDA
default:
stage: build
script:
- export with_cuda=false myconfig=default with_coverage=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
maxset:
stage: build
script:
- export with_cuda=false myconfig=maxset with_coverage=true
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
maxset-python3:
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/ubuntu-python3:18.04
script:
- export myconfig=maxset with_coverage=true python_version=3
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
nocheckmaxset:
stage: build
script:
- export with_cuda=false myconfig=nocheck-maxset 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:
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:42.3:
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
opensuse:15.0:
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:
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
fedora:
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/centos:next
script:
- export with_cuda=false myconfig=maxset make_check=false
- bash maintainer/CI/build_cmake.sh
tags:
- docker
- linux
#ubuntu:1404 not needed: used in cuda:8.0
#ubuntu:1604 not needed: used in cuda:9.0
#ubuntu:1804 not needed: default used in non-CUDA builds
### Builds with CUDA
cuda-shanchen:
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
script:
- export myconfig=shanchen python_version=3 make_check=false
- bash maintainer/cuda_build.sh
tags:
- docker
- linux
- cuda
cuda-maxset:
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
script:
- export myconfig=maxset with_coverage=true python_version=3
- bash maintainer/cuda_build.sh
artifacts:
paths:
- build/
expire_in: 1 week
tags:
- docker
- linux
- cuda
cuda8-maxset:
stage: build
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:8.0
script:
- export myconfig=maxset with_coverage=true
- bash maintainer/cuda_build.sh
artifacts:
paths:
- build/
expire_in: 1 week
tags:
- docker
- linux
- cuda
empty:
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
### Builds with ROCm
rocm-maxset:
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 with OS X
osx:
stage: build
script:
- export with_ccache=false myconfig=maxset with_cuda=false
- bash maintainer/CI/build_cmake.sh
tags:
- mac
osx-python3:
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:
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:
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
- bash maintainer/cuda_build.sh
tags:
- docker
- linux
- cuda
- ptrace
intel:15:
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
- bash maintainer/cuda_build.sh
tags:
- docker
- linux
- cuda
intel:17:
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/cuda_build.sh
tags:
- docker
- linux
- cuda
check_sphinx:
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:8.0
dependencies:
- cuda8-maxset
when: on_success
script:
- cd ${CI_PROJECT_DIR}; cd build && find ./ -exec touch -c -t 203901010000 {} \; && make sphinx
tags:
- docker
- linux
- cuda
check_with_odd_no_of_processors:
stage: additional_checks
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:9.0
when: on_success
dependencies:
- cuda-maxset
script:
- export myconfig=maxset with_coverage=true python_version=3 build_procs=3 check_procs=3 check_odd_only=true
- bash maintainer/cuda_build.sh
tags:
- docker
- linux
- cuda
deploy_documentation:
stage: deploy
image: gitlab.icp.uni-stuttgart.de:4567/espressomd/docker/cuda:8.0
only:
- python
dependencies:
- cuda8-maxset
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'
script:
- cd ${CI_PROJECT_DIR}/build && find ./ -exec touch -c -t 203901010000 {} \; && make sphinx && make doxygen && cd doc/sphinx/html &&
rsync -avz --delete -e "ssh -i ${HOME}/.ssh/espresso_rsa" ./* [email protected]:/home/espresso/public_html/html/doc
- cd ../../doxygen/html &&
rsync -avz --delete -e "ssh -i ${HOME}/.ssh/espresso_rsa" ./* [email protected]:/home/espresso/public_html/html/dox
tags:
- docker
- linux
- cuda
status_success:
stage: result
script: bash maintainer/gh_post_status.sh success
when: on_success
tags:
- linux
dependencies: []
status_failure:
stage: result
script: bash maintainer/gh_post_status.sh failure
when: on_failure
tags:
- linux
dependencies: []