forked from tf-coreml/tf-coreml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
225 lines (198 loc) · 5.48 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
stages:
- build
- test
- collect
########################################################################
#
# linux - Build & Test
#
########################################################################
.build_linux: &build_linux
tags:
- dockerized
stage: build
script:
- bash -e scripts/make_wheel.sh --python=$PYTHON
artifacts:
expire_in: 2 weeks
paths:
- dist/
build_wheel_linux_py27:
<<: *build_linux
image: docker.apple.com/turi/build-image-centos6-python2.7:1801
variables:
PYTHON: /usr/local/bin/python
# Uses Python 3.5 built from source (already on build image)
build_wheel_linux_py35:
<<: *build_linux
image: docker.apple.com/turi/build-image-centos6-python3.5:1801
variables:
PYTHON: /usr/local/bin/python3
# Uses Python 3.6 built from source (already on build image)
build_wheel_linux_py36:
<<: *build_linux
image: docker.apple.com/turi/build-image-centos6-python3.6:1801
variables:
PYTHON: /usr/local/bin/python3
build_wheel_linux_py37:
<<: *build_linux
image: registry.gitlab.com/coremltools/coremltools/build-image-ubuntu:1.0.0
variables:
PYTHON: /usr/local/bin/python3.7
.test_linux: &test_linux
tags:
- dockerized
stage: test
script:
- bash -e scripts/test_wheel.sh --python=$PYTHON --wheel-path=${WHEEL_PATH}
test_wheel_linux_py27:
<<: *test_linux
image: docker.apple.com/turi/build-image-centos7-python2.7:1801
dependencies:
- build_wheel_linux_py27
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /usr/local/bin/python
test_wheel_linux_py35:
<<: *test_linux
image: docker.apple.com/turi/build-image-centos7-python3.5:1801
dependencies:
- build_wheel_linux_py35
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /usr/local/bin/python3
test_wheel_linux_py36:
<<: *test_linux
image: docker.apple.com/turi/build-image-centos7-python3.6:1801
dependencies:
- build_wheel_linux_py36
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /usr/local/bin/python3
test_wheel_linux_py37:
<<: *test_linux
image: registry.gitlab.com/coremltools/coremltools/build-image-ubuntu:1.0.0
dependencies:
- build_wheel_linux_py37
variables:
WHEEL_PATH: dist/tfcoreml*cp37*.whl
PYTHON: /usr/local/bin/python3.7
#########################################################################
##
## macOS - Build & Test
##
#########################################################################
.build_macos: &build_macos
tags:
- macos10.15
stage: build
script:
- bash -e scripts/make_wheel.sh --python=$PYTHON
artifacts:
expire_in: 2 weeks
paths:
- dist/
build_wheel_macos_py27:
<<: *build_macos
variables:
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/bin/python
## Uses Python 3.5 from python.org (already on build machine)
build_wheel_macos_py35:
<<: *build_macos
variables:
PYTHON: /Library/Frameworks/Python.framework/Versions/3.5/bin/python3
## Uses Python 3.6 from python.org (already on build machine)
build_wheel_macos_py36:
<<: *build_macos
variables:
PYTHON: /Library/Frameworks/Python.framework/Versions/3.6/bin/python3
## Uses Python 3.7 from python.org (already on build machine)
build_wheel_macos_py37:
<<: *build_macos
variables:
PYTHON: /Library/Frameworks/Python.framework/Versions/3.7/bin/python3
.test_macos: &test_macos
stage: test
script:
- bash -e scripts/test_wheel.sh --wheel-path=${WHEEL_PATH} --python=${PYTHON}
test_wheel_macos_13_py27:
<<: *test_macos
tags:
- macos10.13
dependencies:
- build_wheel_macos_py27
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/bin/python
test_wheel_macos_14_py27:
<<: *test_macos
tags:
- macos10.14
dependencies:
- build_wheel_macos_py27
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/bin/python
test_wheel_macos_15_py27:
<<: *test_macos
tags:
- macos10.15
dependencies:
- build_wheel_macos_py27
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /Library/Frameworks/Python.framework/Versions/2.7/bin/python
test_wheel_macos_15_py35:
<<: *test_macos
tags:
- macos10.15
dependencies:
- build_wheel_macos_py35
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /Library/Frameworks/Python.framework/Versions/3.5/bin/python3
test_wheel_macos_15_py36:
<<: *test_macos
tags:
- macos10.15
dependencies:
- build_wheel_macos_py36
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /Library/Frameworks/Python.framework/Versions/3.6/bin/python3
test_wheel_macos_15_py37:
<<: *test_macos
tags:
- macos10.15
dependencies:
- build_wheel_macos_py37
variables:
WHEEL_PATH: dist/*.whl
PYTHON: /Library/Frameworks/Python.framework/Versions/3.7/bin/python3
#########################################################################
##
## Collect arfifacts
##
#########################################################################
collect_artifacts:
tags:
- dockerized
services:
- docker:18.09-dind
image: alpine:latest
stage: collect
script:
echo "Collect artifacts (wheels and documentation)"
dependencies:
- build_wheel_linux_py27
- build_wheel_linux_py35
- build_wheel_linux_py36
- build_wheel_linux_py37
- build_wheel_macos_py27
- build_wheel_macos_py35
- build_wheel_macos_py36
- build_wheel_macos_py37
artifacts:
expire_in: 2 weeks
paths:
- dist/