-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
271 lines (247 loc) · 8.96 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
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Settings
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Check module environment
before_script:
- ulimit -s unlimited
- module swap gcc nvhpc
- module list || true
- python3 -V || true
- python2 -V || true
- unset CMAKE_GENERATOR
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stages
# ----------------------------------------------------------------------------------------------------------------------------------------------------
stages:
- build
- reggie_checkin
- reggie_nightly
- reggie_weekly
- documentation
- deploy
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Templates ("hidden jobs")
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Default parameters for the build and testing stage
.default_build_param: &default_build_param
tags:
- flexitag
- siegfried # Ensure GPU on system
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Default parameters for the reggie stage
.default_param: &default_param
<<: *default_build_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_nightly: &defaults_nightly
<<: *defaults
rules:
- if: '$DO_NIGHTLY'
.defaults_weekly: &defaults_weekly
<<: *defaults
rules:
- if: '$DO_WEEKLY'
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# 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
- python3 ../reggie/reggie.py ../regressioncheck/checks/run_basic/freestream_3D -j 6 -e ./bin/galaexi
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# 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
- python3 ../reggie/reggie.py ../regressioncheck/checks/run_basic -j 6
#timediscs:
# <<: *defaults_nightly
# stage: reggie_nightly
# script:
# - cd build
# - python3 ../reggie/reggie.py ../regressioncheck/checks/timedisc -j 6
convtest:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build
- python3 ../reggie/reggie.py ../regressioncheck/checks/convtest -j 6
parabolic:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build
- python3 ../reggie/reggie.py ../regressioncheck/checks/parabolic -j 6
#riemann:
# <<: *defaults_nightly
# stage: reggie_nightly
# script:
# - cd build
# - python3 ../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
- python3 ../reggie/reggie.py ../regressioncheck/checks/tgv -j 6
naca:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build
- python3 ../reggie/reggie.py ../regressioncheck/checks/naca -j 6
#fv_switch:
# <<: *defaults_weekly
# stage: reggie_weekly
# script:
# - cd build
# - python3 ../reggie/reggie.py ../regressioncheck/checks/fv_switch -j 6
#fv_blend:
# <<: *defaults_weekly
# stage: reggie_weekly
# script:
# - cd build
# - python3 ../reggie/reggie.py ../regressioncheck/checks/fv_blend -j 6
#channelRANS:
# <<: *defaults_weekly
# stage: reggie_weekly
# script:
# - cd build
# - python3 ../reggie/reggie.py ../regressioncheck/checks/channelRANS -j 6
#imperator:
# <<: *defaults_weekly
# stage: reggie_weekly
# script:
# - cd build
# - python3 ../reggie/reggie.py ../regressioncheck/checks/preconditioner -j 6
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# 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 doc/doxygen
# - ./builddoxy.sh
# artifacts:
# paths:
# - src
# - doc/doxygen
# cache:
# key: "${CI_COMMIT_REF_SLUG}-DOC"
# paths: [doc/doxygen]
# policy: push
#
#userguide:
# extends: .default_build_param
# stage: documentation
# rules:
# - if: '$DO_DEPLOY'
# - if: '$DO_WEEKLY'
# script:
# - cd doc/userguide
# - make
# artifacts:
# paths:
# - doc/userguide
# cache:
# key: "${CI_COMMIT_REF_SLUG}-USERGUIDE"
# paths: [doc/userguide]
# 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}-DOC"
# paths: [doc/doxygen]
# policy: pull
# - key: "${CI_COMMIT_REF_SLUG}-USERGUIDE"
# paths: [doc/userguide]
# policy: pull
# variables:
# FF_ENABLE_JOB_CLEANUP: 1
# script:
# - cd doc
# - rsync --recursive --delete doxygen/doxygen flexi@euler:homepage/
# - rsync --recursive --delete userguide flexi@euler:homepage/
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/galaexi.git galaexi_github
- cd galaexi_github
- git push --mirror [email protected]:flexi-framework/galaexi.git