forked from SGL-UT/GPSTk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
executable file
·283 lines (258 loc) · 4.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
#.yml file for Gitlab-CI support
stages:
- build
- test
- deploy
- package
- downstream
#Default cmake arguments
variables:
CMAKE_ARG_DEFAULT: "-DBUILD_EXT=ON -DBUILD_PYTHON=ON -DTEST_SWITCH=ON ../"
#Build Stage
#Builds GPSTk for each platform, saves build artifacts for future stages
build_debian:
stage: build
tags:
- debian
script:
- mkdir build
- cd build
- cmake -DPYTHON_INSTALL_PREFIX=install -DCMAKE_INSTALL_PREFIX=install/gpstk $CMAKE_ARG_DEFAULT
- make all -j 4
artifacts:
paths:
- build/
build_redhat:
stage: build
tags:
- redhat
script:
- mkdir build
- cd build
- cmake -DPYTHON_INSTALL_PREFIX=install -DCMAKE_INSTALL_PREFIX=install/gpstk $CMAKE_ARG_DEFAULT
- make all -j 4
artifacts:
paths:
- build/
build_osx:
stage: build
tags:
- osx
script:
- mkdir build
- cd build
- cmake -DPYTHON_INSTALL_PREFIX=install -DCMAKE_INSTALL_PREFIX=install/gpstk $CMAKE_ARG_DEFAULT
- make all -j 4
artifacts:
paths:
- build/
build_windows:
stage: build
tags:
- windows
script:
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=install -DBUILD_EXT=ON -DBUILD_PYTHON=OFF -DTEST_SWITCH=ON -G "Visual Studio 14 2015 Win64" ../
- cmake --build . --config Release
artifacts:
paths:
- build/
build_core:
stage: build
tags:
- core
script:
- mkdir build
- cd build
- cmake -DPYTHON_INSTALL_PREFIX=install -DCMAKE_INSTALL_PREFIX=install/gpstk -DBUILD_EXT=OFF -DBUILD_PYTHON=ON -DTEST_SWITCH=ON ../
- make all -j 4
artifacts:
paths:
- build/
#Test Stage
#Runs all tests of GPSTK for each platform
test_debian:
stage: test
tags:
- debian
script:
- cd build
- ctest -j 4
dependencies:
- build_debian
test_redhat:
stage: test
tags:
- redhat
script:
- cd build
- ctest -j 4
dependencies:
- build_redhat
test_osx:
stage: test
tags:
- osx
script:
- cd build
- ctest -j 4
dependencies:
- build_osx
test_windows:
stage: test
tags:
- windows
script:
- cd build
- cmake --build . --target RUN_TESTS --config Release
dependencies:
- build_windows
allow_failure: true
test_core:
stage: test
tags:
- core
script:
- cd build
- ctest -j 4
dependencies:
- build_core
#Deploy Stage
#Tests install of GPSTk on each platform, saves artifacts for downstream builds.
deploy_debian:
stage: deploy
tags:
- debian
script:
- cd build
- make install -j 4
artifacts:
paths:
- build/install
dependencies:
- build_debian
deploy_redhat:
stage: deploy
tags:
- redhat
script:
- cd build
- make install -j 4
artifacts:
paths:
- build/install
dependencies:
- build_redhat
deploy_osx:
stage: deploy
tags:
- osx
script:
- cd build
- make install -j 4
dependencies:
- build_osx
deploy_windows:
stage: deploy
tags:
- windows
script:
- cd build
- cmake --build . --config Release --target install
dependencies:
- build_windows
deploy_core:
stage: deploy
tags:
- core
script:
- cd build
- make install -j 4
artifacts:
paths:
- build/install
dependencies:
- build_core
#Package Stage
#Tests packaging of GPSTk on all platforms
package_debian:
stage: package
tags:
- debian
script:
- cd build
- make package -j 4
dependencies:
- build_debian
package_redhat:
stage: package
tags:
- redhat
script:
- cd build
- make package -j 4
dependencies:
- build_redhat
package_osx:
stage: package
tags:
- osx
script:
- cd build
- make package -j 4
dependencies:
- build_osx
package_windows:
stage: package
tags:
- windows
script:
- cd build
- cpack -C Release
dependencies:
- build_windows
package_core:
stage: package
tags:
- core
script:
- cd build
- make package -j 4
dependencies:
- build_core
#Downstream Stage
#Builds SGLTk to test for any downstream issues.
sgltk_core:
stage: downstream
tags:
- core
script:
- cd build
- git clone gitlab@repositories.arlut.utexas.edu:sgl/sgltk.git
- cd sgltk
- ./build.sh -cvt -g ../install/gpstk
dependencies:
- deploy_core
sgltk_debian:
stage: downstream
tags:
- debian
script:
- cd build
- git clone gitlab@repositories.arlut.utexas.edu:sgl/sgltk.git
- cd sgltk
- ./build.sh -cvt -g ../install/gpstk
dependencies:
- deploy_debian
sgltk_redhat:
stage: downstream
tags:
- redhat
script:
- cd build
- git clone gitlab@repositories.arlut.utexas.edu:sgl/sgltk.git
- cd sgltk
- ./build.sh -cvt -g ../install/gpstk
dependencies:
- deploy_redhat