-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitlab-ci.yml
210 lines (154 loc) · 3.84 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
###########################################################################
# 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 and uploading API documentation using GitLab
# Pages.
#
# 4. build: Building source and wheel distributions.
#
# 5. deploy: Uploading the build outputs to pypi.
#
# 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.
#
# The doc, build and deploy stages are executed on tags, and the deploy
# stage must be 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:
#
# - 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: "[email protected]"
####################################
# These anchors are used to restrict
# when and where jobs are executed.
####################################
.only_releases: &only_releases
only:
- tags@fsl/fsleyes/props
.except_releases: &except_releases
except:
- tags
.check_version: &check_version
before_script:
- bash ./.ci/check_version.sh
############
# Test stage
############
.test: &test_template
# 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:3.10:
stage: test
image: pauldmccarthy/fsleyes-py310-wxpy4-gtk3
<<: *test_template
test:3.11:
stage: test
image: pauldmccarthy/fsleyes-py311-wxpy4-gtk3
<<: *test_template
test:3.12:
stage: test
image: pauldmccarthy/fsleyes-py312-wxpy4-gtk3
<<: *test_template
test:3.13:
stage: test
image: pauldmccarthy/fsleyes-py313-wxpy4-gtk3
<<: *test_template
test:build-pypi-dist:
stage: test
image: pauldmccarthy/fsleyes-py310-wxpy4-gtk3
<<: *except_releases
tags:
- docker
script:
- bash ./.ci/build_pypi_dist.sh
#############
# Style stage
#############
style:
stage: style
image: pauldmccarthy/fsleyes-py310-wxpy4-gtk3
<<: *test_template
variables:
TEST_STYLE: "true"
###########
# Doc stage
###########
pages:
<<: *only_releases
tags:
- docker
stage: doc
image: pauldmccarthy/fsleyes-py310-wxpy4-gtk3
script:
- bash ./.ci/build_doc.sh
artifacts:
paths:
- public
#############
# Build stage
#############
build-pypi-dist:
<<: *only_releases
<<: *check_version
stage: build
image: pauldmccarthy/fsleyes-py310-wxpy4-gtk3
tags:
- docker
script:
- bash ./.ci/build_pypi_dist.sh
artifacts:
expire_in: 1 day
paths:
- dist/*
##############
# Deploy stage
##############
deploy-pypi:
<<: *only_releases
stage: deploy
when: manual
image: python:3.10
tags:
- docker
dependencies:
- build-pypi-dist
script:
- bash ./.ci/deploy_pypi.sh