forked from apple/coremltools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
290 lines (260 loc) · 7.23 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
stages:
- check
- build
- test
- collect
#########################################################################
##
## Check
##
#########################################################################
check_python_flake8:
tags:
- docker
image: "python:3.7"
stage: check
script:
- python -m pip install --upgrade pip
- pip install flake8
- flake8 ./coremltools --count --select=E9,F5,F63,F7,F82 --show-source --statistics
########################################################################
#
# linux - Build
#
########################################################################
.build_linux: &build_linux
tags:
- docker
stage: build
script:
- export PATH=$PATH:/opt/anaconda/bin/
- zsh -e scripts/build.sh --num-procs=4 --python=$PYTHON --dist
artifacts:
expire_in: 2 weeks
paths:
- build/dist/
build_wheel_linux_py35:
<<: *build_linux
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
variables:
PYTHON: "3.5"
build_wheel_linux_py36:
<<: *build_linux
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
variables:
PYTHON: "3.6"
build_wheel_linux_py37:
<<: *build_linux
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
variables:
PYTHON: "3.7"
build_wheel_linux_py38:
<<: *build_linux
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
variables:
PYTHON: "3.8"
build_wheel_linux_py39:
<<: *build_linux
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
variables:
PYTHON: "3.9"
#########################################################################
##
## macOS - Build
##
#########################################################################
.build_macos: &build_macos
tags:
- macos10.15
stage: build
script:
- zsh -e scripts/build.sh --num-procs=4 --python=$PYTHON --dist
artifacts:
expire_in: 2 weeks
paths:
- build/dist/
build_wheel_macos_py35:
<<: *build_macos
variables:
PYTHON: "3.5"
build_wheel_macos_py36:
<<: *build_macos
variables:
PYTHON: "3.6"
build_wheel_macos_py37:
<<: *build_macos
variables:
PYTHON: "3.7"
build_wheel_macos_py38:
<<: *build_macos
variables:
PYTHON: "3.8"
build_wheel_macos_py39:
<<: *build_macos
variables:
PYTHON: "3.9"
#########################################################################
##
## linux - Test
##
#########################################################################
.test_linux_pkg: &test_linux_pkg
stage: test
script:
- export PATH=$PATH:/opt/anaconda/bin/
- zsh -e scripts/test.sh --wheel-path=${WHEEL_PATH} --python=${PYTHON}
--test-package=${TEST_PACKAGE} --fast
test_linux_py37_coremltools_test:
<<: *test_linux_pkg
tags:
- docker
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
dependencies:
- build_wheel_linux_py37
variables:
WHEEL_PATH: build/dist/coremltools-*-none-manylinux1_x86_64.whl
TEST_PACKAGE: coremltools.test
PYTHON: "3.7"
test_linux_py37_pytorch:
<<: *test_linux_pkg
tags:
- docker
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
dependencies:
- build_wheel_linux_py37
variables:
PYTHON: "3.7"
TEST_PACKAGE: coremltools.converters.mil.frontend.torch
WHEEL_PATH: build/dist/coremltools-*-none-manylinux1_x86_64.whl
#########################################################################
##
## macOS - Test
##
#########################################################################
.test_macos_pkg: &test_macos_pkg
stage: test
timeout: 9h
script:
- zsh -e scripts/test.sh --wheel-path=${WHEEL_PATH} --python=${PYTHON}
--test-package=${TEST_PACKAGE} --fast
.test_macos_pkg_with_reqs: &test_macos_pkg_with_reqs
stage: test
timeout: 9h
script:
- zsh -e scripts/test.sh --wheel-path=${WHEEL_PATH} --python=${PYTHON}
--test-package=${TEST_PACKAGE} --requirements=${REQUIREMENTS} --fast
test_macos11_py37_coremltools_test:
<<: *test_macos_pkg
tags:
- macos11
dependencies:
- build_wheel_macos_py37
variables:
WHEEL_PATH: build/dist/*cp37*10_15*
TEST_PACKAGE: coremltools.test
PYTHON: "3.7"
test_macos11_py37_pytorch:
<<: *test_macos_pkg
tags:
- macos11
dependencies:
- build_wheel_macos_py37
variables:
PYTHON: "3.7"
TEST_PACKAGE: coremltools.converters.mil.frontend.torch
WHEEL_PATH: build/dist/*cp37*10_15*
test_macos11_py37_tf1:
<<: *test_macos_pkg
tags:
- macos11
dependencies:
- build_wheel_macos_py37
variables:
PYTHON: "3.7"
TEST_PACKAGE: coremltools.converters.mil.frontend.tensorflow
WHEEL_PATH: build/dist/*cp37*10_15*
test_macos11_py37_mil:
<<: *test_macos_pkg
tags:
- macos11
dependencies:
- build_wheel_macos_py37
variables:
PYTHON: "3.7"
TEST_PACKAGE: coremltools.converters.mil.mil
WHEEL_PATH: build/dist/*cp37*10_15*
#########################################################################
##
## macOS - Smoke Test on older versions
##
#########################################################################
test_macos11_py38_coremltools_smoke_test:
<<: *test_macos_pkg
tags:
- macos11
dependencies:
- build_wheel_macos_py38
variables:
WHEEL_PATH: build/dist/*cp38*10_15*
TEST_PACKAGE: coremltools.test.neural_network.test_simple_nn_inference
PYTHON: "3.8"
test_macos10_15_py38_coremltools_smoke_test:
<<: *test_macos_pkg
tags:
- macos10.15
dependencies:
- build_wheel_macos_py38
variables:
WHEEL_PATH: build/dist/*cp38*10_15*
TEST_PACKAGE: coremltools.test.neural_network.test_simple_nn_inference
PYTHON: "3.8"
#########################################################################
##
## Make docs
##
#########################################################################
build_documentation:
tags:
- docker
stage: test
image: registry.gitlab.com/zach_nation/coremltools/build-image-ubuntu-18.04:1.0.0
script:
- export PATH=$PATH:/opt/anaconda/bin/
- bash -e scripts/build_docs.sh --wheel-path=${WHEEL_PATH} --python=${PYTHON}
dependencies:
- build_wheel_linux_py37
artifacts:
when: always
expire_in: 2 weeks
paths:
- _build/html/
variables:
WHEEL_PATH: build/dist/coremltools*cp37-none-manylinux1_x86_64.whl
PYTHON: "3.7"
#########################################################################
##
## Collect artifacts
##
#########################################################################
collect_artifacts:
tags:
- docker
services:
- docker:18.09-dind
image: alpine:latest
stage: collect
script:
echo "Collect artifacts (wheels and documentation)"
dependencies:
- build_wheel_linux_py35
- build_wheel_linux_py36
- build_wheel_linux_py37
- build_wheel_linux_py38
- build_wheel_macos_py35
- build_wheel_macos_py36
- build_wheel_macos_py37
- build_wheel_macos_py38
artifacts:
expire_in: 2 weeks
paths:
- build/dist/