-
Notifications
You must be signed in to change notification settings - Fork 69
/
.gitlab-ci.yml
321 lines (291 loc) · 10.7 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
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Settings
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Check module environment
before_script:
- ulimit -s unlimited
- module list || true
- python3 -V || true
- python2 -V || true
- unset CMAKE_GENERATOR
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stages
# ----------------------------------------------------------------------------------------------------------------------------------------------------
stages:
- build
- reggie_checkin
- reggie_nightly
- reggie_weekly
- python
- documentation
- deploy
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Templates ("hidden jobs")
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Default parameters for the build and testing stage
.default_build_param: &default_build_param
tags: [flexitag]
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
.default_python_param: &default_python_param
tags: [dockertag]
image: python:latest
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
paths:
- venv
- .cache/pip
before_script:
- ulimit -s unlimited
- module list || true
- python3 --version
# Setup Python pip
- python3 -m pip install --upgrade pip --root-user-action=ignore
- python3 -m pip --version
# Setup Python virtual environment
- rm -rf venv
- python3 -m venv venv
- source venv/bin/activate
# Install coverage
- pip install --no-cache-dir coverage --root-user-action=ignore
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Default parameters for the reggie stage
.default_param: &default_param
<<: *default_build_param
allow_failure: false
.default_python: &default_python
<<: *default_python_param
allow_failure: false
.reggie_cache: ®gie_cache
key: "reggie"
paths: [reggie]
policy: pull
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Defaults for the standard tests (utilizing "extends" to merge the other "artifacts" options with the specific path)
.defaults: &defaults
extends: .default_param
needs: [build]
artifacts:
paths: [build]
cache:
- *reggie_cache
- key: "${CI_COMMIT_REF_SLUG}"
paths: [build]
policy: pull
variables:
FF_ENABLE_JOB_CLEANUP: 1
.defaults_python: &defaults_python
extends: .default_python
variables:
FF_ENABLE_JOB_CLEANUP: 1
.defaults_nightly: &defaults_nightly
<<: *defaults
rules:
- if: '$DO_NIGHTLY'
.defaults_weekly: &defaults_weekly
<<: *defaults
rules:
- if: '$DO_WEEKLY'
.defaults_nightly_python: &defaults_weekly_python
<<: *defaults_python
rules:
- if: '$DO_NIGHTLY'
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "build": Build on check-in
# ----------------------------------------------------------------------------------------------------------------------------------------------------
reggie_download:
extends: .default_build_param
artifacts:
paths: [reggie]
cache:
key: "reggie"
paths: [reggie]
policy: push
stage: build
script:
- git clone https://github.com/piclas-framework/reggie2.0.git reggie
build:
extends: .default_build_param
needs: [reggie_download]
artifacts:
paths: [build]
cache:
key: "${CI_COMMIT_REF_SLUG}"
paths: [build]
policy: push
stage: build
script:
- mkdir -p build
- cd build
- cmake .. -DLIBS_BUILD_HDF5=OFF
- make -j 6
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "reggie_checkin": Run most simple reggie with previous builds on check-in
# ----------------------------------------------------------------------------------------------------------------------------------------------------
run_basic:
<<: *defaults
stage: reggie_checkin
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/run_basic/freestream_3D -j 6 -e ./bin/flexi
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "reggie_nightly": Build and run
# - build all specified compile options in "run_basic" with LIBS_BUILD_HDF5=ON
# - h-p-convtests
# - parabolic testcases
# - riemann solver tests
# ----------------------------------------------------------------------------------------------------------------------------------------------------
build_all:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/run_basic -j 6
timediscs:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/timedisc -j 6
convtest:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/convtest -j 6
parabolic:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/parabolic -j 6
riemann:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/riemann -j 6
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "reggie_weekly": Build and run more complex tests, basically complete simulatons
# ----------------------------------------------------------------------------------------------------------------------------------------------------
tgv:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/tgv -j 6
naca:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/naca -j 6
fv_switch:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/fv_switch -j 6
fv_blend:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/fv_blend -j 6
channelRANS:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/channelRANS -j 6
imperator:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build
- python ../reggie/reggie.py ../regressioncheck/checks/preconditioner -j 6
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "python": Build and check the python scripts
# ----------------------------------------------------------------------------------------------------------------------------------------------------
ruff:
extends: .defaults_nightly_python
stage: python
script:
- python3 -m pip install ruff
- ruff --version
- ruff check --extend-ignore=E201,E202,E203,E221,E222,E225,E231,E271,E272 --line-length=132 --preview tools
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "documentation": Creates doxygen documentation & compiles the documentation creating the *.pdf
# ----------------------------------------------------------------------------------------------------------------------------------------------------
documentation:
extends: .default_build_param
stage: documentation
rules:
- if: '$DO_DEPLOY'
- if: '$DO_WEEKLY'
script:
- cd docs/doxygen
- ./builddoxy.sh
artifacts:
paths:
- src
- docs/doxygen
cache:
key: "${CI_COMMIT_REF_SLUG}-DOC"
paths: [docs/doxygen]
policy: push
userguide:
extends: .default_build_param
stage: documentation
rules:
- if: '$DO_DEPLOY'
- if: '$DO_WEEKLY'
script:
- cd docs/documentation
- python3 -m pip install --exists-action=w --no-cache-dir -r requirements.txt
- python3 -m sphinx -T -E -b html -d _build/doctrees -D language=en . _build/html
- ls -l _build/html
- python3 -m sphinx -b latex -D language=en -d _build/doctrees . _build/latex
- ls -l _build/latex
- cd _build/latex
- latexmk -r latexmkrc -pdf -f -dvi- -ps- -jobname=flexi -interaction=nonstopmode || true
- ls -l
- ls -l flexi.pdf
artifacts:
paths:
- docs/documentation
cache:
key: "${CI_COMMIT_REF_SLUG}-USERGUIDE"
paths: [docs/documentation]
policy: push
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "deploy": Copies the doxygen documentation and userguide *.pdf to the homepage server & copies the repository to github
# ----------------------------------------------------------------------------------------------------------------------------------------------------
homepage:
extends: .default_build_param
stage: deploy
rules:
- if: '$DO_DEPLOY && $CI_SERVER_URL =~ /.*\.iag\.uni-stuttgart\.de$/'
cache:
- key: "${CI_COMMIT_REF_SLUG}-USERGUIDE"
paths: [docs/documentation]
policy: pull
variables:
FF_ENABLE_JOB_CLEANUP: 1
script:
- rsync --recursive --delete docs/documentation/_build/latex/flexi.pdf webserver:nrg.git/nrg_website/NRG/userguide/pdf/userguide.pdf
- rsync --recursive --delete docs/documentation/_build/html/* webserver:nrg.git/nrg_website/NRG/userguide/html/.
github:
extends: .default_build_param
stage: deploy
rules:
- if: '$DO_DEPLOY && $CI_SERVER_URL =~ /.*\.iag\.uni-stuttgart\.de$/'
variables:
FF_ENABLE_JOB_CLEANUP: 1
script:
- git clone --single-branch [email protected]:flexi/flexi.git flexi_github
- cd flexi_github
- git push --mirror [email protected]:flexi-framework/flexi.git