forked from KCL-BMEIS/niftyreg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
301 lines (234 loc) · 6.17 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
# .gitlab-ci.yml
stages:
- build
- test
- cleanup
before_script:
- export src_dir="${CI_PROJECT_DIR}"
- export git_hash="${CI_COMMIT_SHA:0:6}"
- export pb_dir="${CI_PROJECT_DIR}-build-${git_hash}"
- hostname
- whoami
- pwd
- echo "Sources - ${src_dir}"
- echo "Commit - ${git_hash}"
- echo "Project build - ${pb_dir}"
##############################################################
### BUILD
Mac-build:
stage: build
script:
- mkdir -p ${pb_dir}/llvm
- cd ${pb_dir}/llvm
- cmake
-DCMAKE_CXX_COMPILER=g++
-DCMAKE_C_COMPILER=gcc
-DCMAKE_BUILD_TYPE=Release
-DBUILD_ALL_DEP=ON
-DUSE_CUDA=ON
-DUSE_OPENCL=ON
-DUSE_SSE=ON
-DUSE_OPENMP=OFF
-DBUILD_TESTING=ON
-DTESTING_2D_FILE=${src_dir}/reg-test/target_2D.nii.gz
-DTESTING_3D_FILE=${src_dir}/reg-test/target_3D.nii.gz
${src_dir}
- cmake
-DCMAKE_CXX_COMPILER=g++
-DCMAKE_C_COMPILER=gcc
-DCMAKE_BUILD_TYPE=Release
-DBUILD_ALL_DEP=ON
-DUSE_CUDA=ON
-DUSE_OPENCL=ON
-DUSE_SSE=ON
-DUSE_OPENMP=OFF
-DBUILD_TESTING=ON
-DTESTING_2D_FILE=${src_dir}/reg-test/target_2D.nii.gz
-DTESTING_3D_FILE=${src_dir}/reg-test/target_3D.nii.gz
${src_dir}
- make -j 4
- mkdir -p ${pb_dir}/gnu
- mkdir -p ${pb_dir}/gnu/reg-test
- cd ${pb_dir}/gnu
- cp -R ${pb_dir}/llvm/reg-test/test-data ${pb_dir}/gnu/reg-test/test-data
- cmake
-DCMAKE_CXX_COMPILER=g++-7
-DCMAKE_C_COMPILER=gcc-7
-DCMAKE_BUILD_TYPE=Release
-DBUILD_ALL_DEP=ON
-DUSE_CUDA=ON
-DCUDA_HOST_COMPILER=/usr/bin/clang
-DUSE_OPENCL=ON
-DUSE_SSE=ON
-DUSE_OPENMP=ON
-DBUILD_TESTING=ON
-DTESTING_2D_FILE=${src_dir}/reg-test/target_2D.nii.gz
-DTESTING_3D_FILE=${src_dir}/reg-test/target_3D.nii.gz
${src_dir}
- cmake
-DCMAKE_CXX_COMPILER=g++-7
-DCMAKE_C_COMPILER=gcc-7
-DCMAKE_BUILD_TYPE=Release
-DBUILD_ALL_DEP=ON
-DUSE_CUDA=ON
-DCUDA_HOST_COMPILER=/usr/bin/clang
-DUSE_OPENCL=ON
-DUSE_SSE=ON
-DUSE_OPENMP=ON
-DBUILD_TESTING=ON
-DTESTING_2D_FILE=${src_dir}/reg-test/target_2D.nii.gz
-DTESTING_3D_FILE=${src_dir}/reg-test/target_3D.nii.gz
${src_dir}
- make -j 4
only:
- branches
tags:
- mac
Linux-build:
stage: build
script:
- mkdir -p ${pb_dir}
- cd ${pb_dir}
- cmake
-DCMAKE_BUILD_TYPE=Release
-DBUILD_ALL_DEP=ON
-DUSE_CUDA=ON
-DUSE_OPENCL=ON
-DUSE_SSE=ON
-DUSE_OPENMP=ON
-DBUILD_TESTING=ON
-DTESTING_2D_FILE=${src_dir}/reg-test/target_2D.nii.gz
-DTESTING_3D_FILE=${src_dir}/reg-test/target_3D.nii.gz
${src_dir}
- cmake
-DCMAKE_BUILD_TYPE=Release
-DBUILD_ALL_DEP=ON
-DUSE_CUDA=ON
-DUSE_OPENCL=ON
-DUSE_SSE=ON
-DUSE_OPENMP=ON
-DBUILD_TESTING=ON
-DTESTING_2D_FILE=${src_dir}/reg-test/target_2D.nii.gz
-DTESTING_3D_FILE=${src_dir}/reg-test/target_3D.nii.gz
${src_dir}
- make -j 4
only:
- branches
tags:
- linux
Windows-build:
stage: build
before_script:
- set src_dir="%CI_PROJECT_DIR%"
- set git_hash="%CI_COMMIT_SHA:~0,6%"
- set pb_dir="%CI_PROJECT_DIR%-build-%git_hash%"
- hostname
- whoami
- echo %cd%
- echo "Sources - %src_dir%"
- echo "Commit - %git_hash%"
- echo "Project build - %pb_dir%"
script:
- if not exist %pb_dir% mkdir -p %pb_dir%
- cd %pb_dir%
- set cmake="C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe"
- call %cmake%
-G "Visual Studio 15 2017 Win64"
-DCMAKE_BUILD_TYPE=Release
-DBUILD_ALL_DEP=ON
-DUSE_CUDA=ON
-DUSE_OPENCL=ON
-DUSE_SSE=ON
-DUSE_OPENMP=ON
-DBUILD_TESTING=ON
-DTESTING_2D_FILE="%src_dir%/reg-test/target_2D.nii.gz"
-DTESTING_3D_FILE="%src_dir%/reg-test/target_3D.nii.gz"
%src_dir%
- set msbuild="C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/MSBuild/15.0/Bin/MSBuild.exe"
- echo "%msbuild%"
- call %msbuild% NiftyReg.sln /t:Build /p:Configuration=Release
only:
- branches
tags:
- windows
##############################################################
### TEST
Mac-test:
stage: test
script:
- cd ${pb_dir}/llvm
- ctest -V
- cd ${pb_dir}/gnu
- ctest -V
only:
- branches
tags:
- mac
Linux-test:
stage: test
script:
- cd ${pb_dir}
- ctest -V
only:
- branches
tags:
- mac
Windows-test:
stage: test
before_script:
- set src_dir="%CI_PROJECT_DIR%"
- set git_hash="%CI_COMMIT_SHA:~0,6%"
- set pb_dir="%CI_PROJECT_DIR%-build-%git_hash%"
- hostname
- whoami
- echo %cd%
- echo "Sources - %src_dir%"
- echo "Commit - %git_hash%"
- echo "Project build - %pb_dir%"
script:
- cd %pb_dir%
- set ctest="C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/ctest.exe"
- call %ctest% -V
only:
- branches
tags:
- windows
##############################################################
### CLEAN
Mac-cleanup:
stage: cleanup
script:
- rm -rf ${pb_dir}
when: always
only:
- branches
tags:
- mac
Linux-cleanup:
stage: cleanup
script:
- rm -rf ${pb_dir}
when: always
only:
- branches
tags:
- linux
Windows-cleanup:
stage: cleanup
before_script:
- set src_dir="%CI_PROJECT_DIR%"
- set git_hash="%CI_COMMIT_SHA:~0,6%"
- set pb_dir="%CI_PROJECT_DIR%-build-%git_hash%"
- hostname
- whoami
- echo %cd%
- echo "Sources - %src_dir%"
- echo "Commit - %git_hash%"
- echo "Project build - %pb_dir%"
script:
- call rd /s /q %pb_dir%
when: always
only:
- branches
tags:
- windows