forked from flexi-framework/flexi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
165 lines (146 loc) · 6.01 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
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
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# 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 [email protected]:reggie2.0/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 [email protected]:reggie2.0/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_gnu
stage: reggie_nightly
script:
- if [ -n "${DO_NIGHTLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/run_basic -j 6; fi
gnu_timediscs:
<<: *defaults_gnu
stage: reggie_nightly
script:
- if [ -n "${DO_NIGHTLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/timedisc -j 6; fi
gnu_convtest:
<<: *defaults_gnu
stage: reggie_nightly
script:
- if [ -n "${DO_NIGHTLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/convtest -j 6; fi
gnu_parabolic:
<<: *defaults_gnu
stage: reggie_nightly
script:
- if [ -n "${DO_NIGHTLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/parabolic -j 6; fi
gnu_riemann:
<<: *defaults_gnu
stage: reggie_nightly
script:
- if [ -n "${DO_NIGHTLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/riemann -j 6; fi
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# Stage "reggie_weekly": Build and run more complex tests, basically complete simulatons
# ----------------------------------------------------------------------------------------------------------------------------------------------------
gnu_tgv:
<<: *defaults_gnu
stage: reggie_weekly
script:
- if [ -n "${DO_WEEKLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/tgv -j 6; fi
gnu_naca:
<<: *defaults_gnu
stage: reggie_weekly
script:
- if [ -n "${DO_WEEKLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/naca -j 6; fi
gnu_fv:
<<: *defaults_gnu
stage: reggie_weekly
script:
- if [ -n "${DO_WEEKLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/fv -j 6; fi
gnu_channelRANS:
<<: *defaults_gnu
stage: reggie_weekly
script:
- if [ -n "${DO_WEEKLY}" ]; then cd build_gnu ; python ./reggie2.0/reggie.py ../regressioncheck/checks/channelRANS -j 6 ; fi
# ----------------------------------------------------------------------------------------------------------------------------------------------------
# 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
script:
- if [ -z "${DO_DEPLOY}" ]; then exit ; fi
- git clone --single-branch [email protected]:flexi/flexi.git flexi_github ; cd flexi_github ; git push --mirror [email protected]:flexi-framework/flexi.git ; cd ../