forked from pauldmccarthy/fsleyes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
469 lines (354 loc) · 9.1 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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
###########################################################################
# This file defines the build process for fsleyes, as hosted at:
#
# https://git.fmrib.ox.ac.uk/fsl/fsleyes
#
# The build pipeline currently comprises the following stages:
#
# 1. test: Unit tests
#
# 2. style: Check coding style
#
# 3. doc: Building user and API documentation
#
# 4. dev-build: Building standalone distributions for development
# versions.
#
# 5. build: Building source distributions, wheels, and standalone
# distributions for releases
#
# 6. deploy: Uploading the source and wheel distributions to pypi,
# and the documentation and standalone distributions to a
# hosting server.
#
# Custom docker images are used for several jobs - these images are
# available at:
#
# https://hub.docker.com/u/pauldmccarthy/
#
# The test and style stages are executed on all branches of upstream and
# fork repositories.
#
# The doc stage executed on all branches of the upastream repository.
# The build and deploy stages are only executed on release tags on
# the upstream repository.
#
# Development builds can be manually executed on any branch of any
# repository.
#
# Standalons distributions (py2app/pyinstaller) are built for several
# platforms for release tags.
#
# Source and wheel distributions are deployed to pypi for release tags.
#
# User and API documentation is deployed to a hosting server for all
# branches.
#
# Standalone distributions are deployed to a hosting server for release
# tags.
###########################################################################
stages:
- test
- style
- doc
- build
- build-dev
- deploy
#################################################################################
# A number of variables must be set for the jobs to work. The following
# variables are implicitly defined in any gitlab CI job:
#
# - CI_PROJECT_PATH - gitlab namespace/project
# - CI_COMMIT_REF_NAME - branch name, provided by gitlab
# - CI_COMMIT_TAG - present if build is running on a tag
#
# These variables must be explicitly set as "secret" variables:
#
# - SSH_PRIVATE_KEY_GIT - private key for git login to remote host
# (UPSTREAM_URL)
#
# - SSH_PRIVATE_KEY_APIDOC_DEPLOY - private key for rsyncing documentation
# to remote host (APIDOC_HOST)
#
# - SSH_PRIVATE_KEY_USERDOC_DEPLOY - private key for rsyncing documentation
# to remote host (USERDOC_HOST)
#
# - SSH_PRIVATE_KEY_BUILD_DEPLOY - private key for standalone builds
# to remote host (BUILD_HOST)
#
# - SSH_SERVER_HOSTKEYS - List of trusted SSH hosts
#
# - APIDOC_HOST: - Username@host to upload API
# documentation to (e.g.
# "paulmc@jalapeno.fmrib.ox.ac.uk")
#
# - USERDOC_HOST: - Username@host to upload user
# documentation to (e.g.
# "paulmc@jalapeno.fmrib.ox.ac.uk")
#
# - BUILD_HOST - Username@host to upload release
# standalone builds to
# (e.g. "paulmc@jalapeno.fmrib.ox.ac.uk")
#
# - TWINE_USERNAME: - Username to use when uploading to pypi
#
# - TWINE_PASSWORD: - Password to use when uploading to pypi
#
# - TWINE_REPOSITORY_URL: - Pypi repository to upload to
###############################################################################
variables:
UPSTREAM_PROJECT: "fsl/fsleyes/fsleyes"
UPSTREAM_URL: "git@git.fmrib.ox.ac.uk"
####################################
# These anchors are used to restrict
# when and where jobs are executed.
####################################
.only_upstream: &only_upstream
only:
- branches@fsl/fsleyes/fsleyes
.only_master: &only_master
only:
- master@fsl/fsleyes/fsleyes
.only_releases: &only_releases
only:
- tags@fsl/fsleyes/fsleyes
.except_releases: &except_releases
except:
- tags
.setup_ssh: &setup_ssh
before_script:
- bash ./.ci/setup_ssh.sh
###################################################
# The patch_version anchor contains a before_script
# section which is run on release builds, and makes
# sure that the version in the code is up to date
# (i.e. equal to the tag name).
###################################################
.patch_version: &patch_version
before_script:
- bash ./.ci/patch_version.sh
############
# Test stage
############
.test: &test_template
<<: *setup_ssh
# Releases are just tags on a release
# branch, so we don't need to test them.
<<: *except_releases
tags:
- docker
script:
- bash ./.ci/test_template.sh
test:wxpython3:
stage: test
image: pauldmccarthy/fsleyes-py27-wxpy3-gtk2
<<: *test_template
test:2.7:
stage: test
image: pauldmccarthy/fsleyes-py27-wxpy4-gtk2
<<: *test_template
test:3.4:
stage: test
image: pauldmccarthy/fsleyes-py34-wxpy4-gtk2
<<: *test_template
test:3.5:
stage: test
image: pauldmccarthy/fsleyes-py35-wxpy4-gtk2
<<: *test_template
test:3.6:
stage: test
image: pauldmccarthy/fsleyes-py36-wxpy4-gtk2
<<: *test_template
#############
# Style stage
#############
style:
stage: style
image: pauldmccarthy/fsleyes-py35-wxpy4-gtk2
<<: *test_template
variables:
TEST_STYLE: "true"
###########
# Doc stage
###########
.build_doc: &build_doc
<<: *only_upstream
<<: *patch_version
tags:
- docker
stage: doc
image: python:3.5
build-userdoc:
<<: *build_doc
<<: *patch_version
script:
- bash ./.ci/build_userdoc.sh
artifacts:
expire_in: 1 day
paths:
- userdoc/$CI_COMMIT_REF_NAME
build-apidoc:
<<: *build_doc
<<: *patch_version
script:
- bash ./.ci/build_apidoc.sh
artifacts:
expire_in: 1 day
paths:
- apidoc/$CI_COMMIT_REF_NAME
###################
# Build[-dev] stage
###################
build-pypi-dist:
<<: *only_releases
<<: *patch_version
stage: build
image: python:3.5
tags:
- docker
script:
- bash ./.ci/build_pypi_dist.sh
artifacts:
expire_in: 1 day
paths:
- dist/*tar.gz
- dist/*whl
.linux_do_build: &linux_do_build
tags:
- docker
script:
- bash ./.ci/linux_do_build.sh
artifacts:
expire_in: 1 day
paths:
- dist/FSLeyes*.tar.gz
.mac_do_build: &mac_do_build
tags:
- macOS
script:
- bash ./.ci/mac_do_build.sh
artifacts:
expire_in: 1 day
paths:
- dist/FSLeyes*.tar.gz
# build-dev jobs
################
.build_dev_template: &build_dev_template
stage: build-dev
when: manual
<<: *except_releases
build-dev-centos6:
image: pauldmccarthy/fsleyes-centos6
<<: *build_dev_template
<<: *linux_do_build
variables:
OSNAME: "centos6"
build-dev-centos7:
image: pauldmccarthy/fsleyes-centos7
<<: *build_dev_template
<<: *linux_do_build
variables:
OSNAME: "centos7"
build-dev-ubuntu1404:
image: pauldmccarthy/fsleyes-ubuntu1404
<<: *build_dev_template
<<: *linux_do_build
variables:
OSNAME: "ubuntu1404"
build-dev-ubuntu1604:
image: pauldmccarthy/fsleyes-ubuntu1404
<<: *build_dev_template
<<: *linux_do_build
variables:
OSNAME: "ubuntu1604"
build-dev-macos:
<<: *build_dev_template
<<: *mac_do_build
# build jobs
############
build-macos:
stage: build
<<: *only_releases
<<: *patch_version
<<: *mac_do_build
build-centos6:
stage: build
image: pauldmccarthy/fsleyes-centos6
<<: *only_releases
<<: *patch_version
<<: *linux_do_build
variables:
OSNAME: "centos6"
build-centos7:
stage: build
image: pauldmccarthy/fsleyes-centos7
<<: *only_releases
<<: *patch_version
<<: *linux_do_build
variables:
OSNAME: "centos7"
build-ubuntu1404:
stage: build
image: pauldmccarthy/fsleyes-ubuntu1404
<<: *only_releases
<<: *patch_version
<<: *linux_do_build
variables:
OSNAME: "ubuntu1404"
build-ubuntu1604:
stage: build
image: pauldmccarthy/fsleyes-ubuntu1604
<<: *only_releases
<<: *patch_version
<<: *linux_do_build
variables:
OSNAME: "ubuntu1604"
build-macos:
stage: build
<<: *only_releases
<<: *patch_version
<<: *mac_do_build
##############
# Deploy stage
##############
deploy-doc:
<<: *only_upstream
<<: *setup_ssh
stage: deploy
when: manual
image: python:3.5
tags:
- docker
dependencies:
- build-userdoc
- build-apidoc
script:
- bash ./.ci/deploy_doc.sh
deploy-pypi:
<<: *only_releases
<<: *setup_ssh
stage: deploy
when: manual
image: python:3.5
tags:
- docker
dependencies:
- build-pypi-dist
script:
- bash ./.ci/deploy_pypi.sh
deploy-builds:
<<: *only_releases
<<: *setup_ssh
stage: deploy
when: manual
image: python:3.5
tags:
- docker
dependencies:
- build-centos6
- build-centos7
- build-ubuntu1404
- build-ubuntu1604
- build-macos
script:
- bash ./.ci/deploy_builds.sh