forked from pauldmccarthy/fsleyes-props
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
260 lines (192 loc) · 4.91 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
###########################################################################
# This file defines the build process for fsleyes-props, as hosted at:
#
# https://git.fmrib.ox.ac.uk/fsl/fsleyes/props
#
# The build pipeline comprises the following stages:
#
# 1. test: Unit tests.
#
# 2. style: Check coding style
#
# 3. doc: Building API documentation
#
# 4. build: Building source distributions and wheels
#
# 5. deploy: Uploading the build outputs to pypi, and the documentation
# 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, and the deploy-doc job, is executed on all branches of the
# upstream repository.
#
# The build stage, and the remaining jobs in the deploy stage, are only
# executed on the upstream repository, and only for release tags.
#
# The deploy stages are manually instantiated.
###########################################################################
stages:
- test
- style
- doc
- build
- 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_DOC_DEPLOY - private key for rsyncing documentation
# to remote host (DOC_HOST)
#
# - SSH_SERVER_HOSTKEYS - List of trusted SSH hosts
#
# - DOC_HOST: - Username@host to upload documentation 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/props"
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/props
.only_master: &only_master
only:
- master@fsl/fsleyes/props
.only_releases: &only_releases
only:
- tags@fsl/fsleyes/props
.except_releases: &except_releases
except:
- tags
.setup_ssh: &setup_ssh
before_script:
- bash ./.ci/setup_ssh.sh
.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:
<<: *only_upstream
<<: *patch_version
tags:
- docker
stage: doc
image: python:3.5
script:
- bash ./.ci/build_doc.sh
artifacts:
expire_in: 1 day
paths:
- doc/$CI_COMMIT_REF_NAME
#############
# Build stage
#############
build-dist:
<<: *only_releases
<<: *patch_version
stage: build
image: python:3.5
tags:
- docker
script:
- bash ./.ci/build_dist.sh
artifacts:
expire_in: 1 day
paths:
- dist/*
##############
# Deploy stage
##############
deploy-doc:
<<: *only_upstream
<<: *setup_ssh
stage: deploy
when: manual
image: python:3.5
tags:
- docker
dependencies:
- build-doc
script:
- bash ./.ci/deploy_doc.sh
deploy-pypi:
<<: *only_releases
<<: *setup_ssh
stage: deploy
when: manual
image: python:3.5
tags:
- docker
dependencies:
- build-dist
script:
- bash ./.ci/deploy_pypi.sh