forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
292 lines (242 loc) · 8.32 KB
/
azure-pipelines.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
291
292
trigger:
branches:
include:
- '*' # must quote since "*" is a YAML reserved character; we want a string
tags:
include:
- 'v*'
pr:
branches:
include:
- '*' # must quote since "*" is a YAML reserved character; we want a string
jobs:
- job: 'WebAssembly'
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: NodeTool@0
inputs:
versionSpec: '12.x'
- bash: npm install -g yarn
displayName: "Install Yarn"
- bash: yarn
displayName: "Install Deps"
env:
PSP_DOCKER: 1
- bash: yarn build_js --ci
displayName: "Build"
env:
PSP_DOCKER: 1
- bash: yarn test_js --quiet --ci
displayName: "Test"
env:
PSP_DOCKER: 1
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: 'junit.xml'
- job: 'Linux'
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
Python27ManyLinux2010:
python.version: '2.7'
python_flag: '--python2'
manylinux_flag: '--manylinux2010'
artifact_name: 'cp27-cp27m-manylinux2010_x86_64'
Python37ManyLinux2010:
python.version: '3.7'
python_flag: ''
manylinux_flag: '--manylinux2010'
artifact_name: 'cp37-cp37m-manylinux2010_x86_64'
${{ if startsWith(variables['build.sourceBranch'], 'refs/tags/v') }}:
Python36ManyLinux2010:
python.version: '3.6'
python_flag: '--python36'
manylinux_flag: '--manylinux2010'
artifact_name: 'cp36-cp36m-manylinux2010_x86_64'
Python36ManyLinux2014:
python.version: '3.6'
python_flag: '--python36'
manylinux_flag: '--manylinux2014'
artifact_name: 'cp36-cp36m-manylinux2014_x86_64'
# Python37ManyLinux2010 is always built
Python37ManyLinux2014:
python.version: '3.7'
python_flag: ''
manylinux_flag: '--manylinux2014'
artifact_name: 'cp37-cp37m-manylinux2014_x86_64'
Python38ManyLinux2010:
python.version: '3.8'
python_flag: '--python38'
manylinux_flag: '--manylinux2010'
artifact_name: 'cp38-cp38-manylinux2010_x86_64'
Python38ManyLinux2014:
python.version: '3.8'
python_flag: '--python38'
manylinux_flag: '--manylinux2014'
artifact_name: 'cp38-cp38-manylinux2014_x86_64'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- task: NodeTool@0
inputs:
versionSpec: '12.x'
- bash: npm install -g yarn
displayName: "Install Yarn"
- bash: yarn
displayName: 'Install Deps'
- bash: python -m pip install -U "black==20.8b1" flake8-black pip
condition: and(succeeded(), ne(variables['python.version'], '2.7'))
displayName: 'Install Python deps'
- bash: yarn build_python --ci $(python_flag) $(manylinux_flag)
displayName: 'build'
env:
PSP_DOCKER: 1
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testResultsFiles: 'python/perspective/python_junit.xml'
testRunTitle: 'Publish test results for Python $(python.version) $(manylinux_flag)'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/*coverage.xml'
# Build a python wheel for Manylinux
- bash: yarn _wheel_python --ci $(python_flag) $(manylinux_flag)
condition: and(succeeded(), ne(variables['manylinux_flag'], ''))
displayName: 'Build Manylinux Wheel'
env:
PSP_DOCKER: 1
# Test the wheel
- bash: cd $(System.DefaultWorkingDirectory)/python/perspective/scripts && ./test_wheels.sh $(python_flag) $(manylinux_flag)
condition: and(succeeded(), ne(variables['manylinux_flag'], ''))
displayName: 'Test Manylinux Wheel'
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
condition: and(succeeded(), ne(variables['manylinux_flag'], ''))
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/wheelhouse/'
artifactName: '$(artifact_name)'
- job: 'Windows'
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
Python37:
python.version: '3.7'
python_flag: ''
${{ if startsWith(variables['build.sourceBranch'], 'refs/tags/v') }}:
Python36:
python.version: '3.6'
python_flag: '--python36'
Python38:
python.version: '3.8'
python_flag: '--python38'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- task: NodeTool@0
inputs:
versionSpec: '12.x'
- script: |
which python > python.txt
set /p PYTHON=<python.txt
ln -s %PYTHON% %PYTHON%$(python.version)
python --version
which python$(python.version)
displayName: "Which python"
- script: |
python -m pip install -U numpy "pyarrow>=0.16.0,<1" pip
displayName: "Python deps"
- script: npm install -g yarn
displayName: "Install Yarn"
- script: yarn
displayName: 'Install Deps'
- script: yarn build_python --ci $(python_flag)
displayName: 'build'
env:
# Set `BOOST_ROOT` manually, as `BOOST_ROOT` is removed in the VM:
# https://github.com/actions/virtual-environments/issues/687
#
# 06/18/2020 - seems like boost got moved to `x86_64` inside
# the boost folder, which broke builds for a bit.
#
# 11/24/2020 - boost 1.69 was removed, so update to 1.72:
# https://github.com/actions/virtual-environments/issues/1847
BOOST_ROOT: "C:/hostedtoolcache/windows/Boost/1.72.0/x86_64/"
BOOST_INCLUDEDIR: "C:/hostedtoolcache/windows/Boost/1.72.0/x86_64/include"
BOOST_LIBRARYDIR: "C:/hostedtoolcache/windows/Boost/1.72.0/x86_64/libs"
- job: 'MacOS_Catalina'
pool:
vmImage: 'macos-10.15'
strategy:
matrix:
Python27:
python.version: '2.7'
python_flag: '--python2'
artifact_name: 'cp27-cp27m-macosx_10_15_x86_64'
Python37:
python.version: '3.7'
python_flag: ''
artifact_name: 'cp37-cp37m-macosx_10_15_x86_64'
${{ if startsWith(variables['build.sourceBranch'], 'refs/tags/v') }}:
Python36:
python.version: '3.6'
python_flag: '--python36'
artifact_name: 'cp36-cp36m-macosx_10_15_x86_64'
Python38:
python.version: '3.8'
python_flag: '--python38'
artifact_name: 'cp38-cp38-macosx_10_15_x86_64'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- task: NodeTool@0
inputs:
versionSpec: '12.x'
- script: |
brew install boost
displayName: "System deps"
- script: |
which python
python --version
which python$(python.version)
displayName: "Which python"
- script: |
python -m pip install -U delocate wheel numpy "pyarrow>=0.16.0,<1" pip
displayName: "Python deps"
- script: npm install -g yarn
displayName: "Install Yarn"
- script: yarn --network-timeout 600000
displayName: 'Install Deps'
- script: yarn build_python --ci $(python_flag)
displayName: 'build'
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testResultsFiles: 'python/perspective/python_junit.xml'
testRunTitle: 'Publish test results for Python $(python.version)'
- task: PublishCodeCoverageResults@1
inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/*coverage.xml'
# Build a python wheel for Mac 10.14
- bash: yarn _wheel_python --ci $(python_flag) --macos
displayName: 'Build wheel'
# Test the wheel
- bash: cd $(System.DefaultWorkingDirectory)/python/perspective/scripts && ./test_wheels.sh $(python_flag) --macos
displayName: 'Test Mac Wheel'
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/dist/'
artifactName: '$(artifact_name)'