forked from flexi-framework/flexi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
214 lines (192 loc) · 6.82 KB
/
.gitlab-ci.yml
File metadata and controls
214 lines (192 loc) · 6.82 KB
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
stages:
- build
- reggie_checkin
- reggie_nightly
- reggie_weekly
- deploy
.template: &defaults_gnu
tags:
- flexitag
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
paths:
- build_gnu
cache:
key: "${CI_COMMIT_REF_SLUG}-GNU"
paths:
- build_gnu
policy: pull
allow_failure: false
.template: &defaults_nightly
tags:
- flexitag
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
paths:
- build_gnu
cache:
key: "${CI_COMMIT_REF_SLUG}-GNU"
paths:
- build_gnu
policy: pull
allow_failure: false
rules:
- if: '$DO_NIGHTLY'
.template: &defaults_weekly
tags:
- flexitag
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
paths:
- build_gnu
cache:
key: "${CI_COMMIT_REF_SLUG}-GNU"
paths:
- build_gnu
policy: pull
allow_failure: false
rules:
- if: '$DO_WEEKLY'
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "build": Build with intel/gnu on check-in
# ----------------------------------------------------------------------------------------------------------------------------------------------------
build_gnu:
tags:
- flexitag
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
paths:
- build_gnu
cache:
key: "${CI_COMMIT_REF_SLUG}-GNU"
paths:
- build_gnu
policy: push
stage: build
script:
- mkdir -p build_gnu ; cd build_gnu
- git clone https://github.com/piclas-framework/reggie2.0.git
- cmake .. -DLIBS_BUILD_HDF5=OFF ; make -j 6
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "reggie_checkin": Run most simple reggie with previous builds on check-in
# ----------------------------------------------------------------------------------------------------------------------------------------------------
gnu:
<<: *defaults_gnu
stage: reggie_checkin
script:
- rm -r build_gnu; mkdir -p build_gnu; cd build_gnu
- git clone https://github.com/piclas-framework/reggie2.0.git
- cmake .. -DLIBS_BUILD_HDF5=OFF ; make -j 6
- python ./reggie2.0/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
# ----------------------------------------------------------------------------------------------------------------------------------------------------
gnu_build_all:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/run_basic -j 6
gnu_timediscs:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/timedisc -j 6
gnu_convtest:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/convtest -j 6
gnu_parabolic:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/parabolic -j 6
gnu_riemann:
<<: *defaults_nightly
stage: reggie_nightly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/riemann -j 6
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "reggie_weekly": Build and run more complex tests, basically complete simulatons
# ----------------------------------------------------------------------------------------------------------------------------------------------------
gnu_tgv:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/tgv -j 6
gnu_naca:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/naca -j 6
gnu_fv_switch:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/fv_switch -j 6
gnu_fv_blend:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/fv_blend -j 6
gnu_channelRANS:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/channelRANS -j 6
gnu_imperator:
<<: *defaults_weekly
stage: reggie_weekly
script:
- cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/preconditioner -j 6
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "deploy": 1. Creates doxygen documentation & compiles the documentation creating the *.pdf
# 2. Copies the doxygen documentation and userguide *.pdf to the homepage server & copies the repository to github
# ----------------------------------------------------------------------------------------------------------------------------------------------------
documentation:
stage: deploy
tags:
- flexitag
script:
- cd doc/doxygen ; ./builddoxy.sh
- if [ -n "${DO_DEPLOY}" ]; then ssh flexi@euler rm -rf homepage/doxygen ; scp -r doxygen flexi@euler:~/homepage/. ; fi
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
paths:
- src
- doc/doxygen
userguide:
stage: deploy
tags:
- flexitag
script:
- cd doc/userguide ; make; cd ..
- if [ -n "${DO_DEPLOY}" ]; then scp -r userguide flexi@euler:~/homepage/. ; fi
artifacts:
name: "${CI_PIPELINE_ID}-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
expire_in: 1 day
when: on_failure
paths:
- doc/userguide
github:
stage: deploy
tags:
- flexitag
rules:
- if: '$DO_DEPLOY && $CI_SERVER_URL =~ /.*\.iag\.uni-stuttgart\.de$/'
script:
- git clone --single-branch git@gitlab.iag.uni-stuttgart.de:flexi/flexi.git flexi_github ; cd flexi_github ; git push --mirror git@github.com:flexi-framework/flexi.git ; cd ../