forked from apple/coremltools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
179 lines (157 loc) · 4.59 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
stages:
- build
- test
########################################################################
#
# 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:
- build/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
.test_linux: &test_linux
tags:
- dockerized
stage: test
script:
- bash -e scripts/test_wheel.sh --wheel-path=${WHEEL_PATH} --python=${PYTHON}
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: build/dist/coremltools*cp27-none-manylinux1_x86_64.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: build/dist/coremltools*cp35-none-manylinux1_x86_64.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: build/dist/coremltools*cp36-none-manylinux1_x86_64.whl
PYTHON: /usr/local/bin/python3
#########################################################################
##
## 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:
- build/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: build/dist/*cp27*10_13*
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: build/dist/*cp27*10_14*
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: build/dist/*cp27*10_15*
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: build/dist/*cp35*10_15*
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: build/dist/*cp36*10_15*
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: build/dist/*cp37*10_15*
PYTHON: /Library/Frameworks/Python.framework/Versions/3.7/bin/python3