-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
363 lines (308 loc) · 11.7 KB
/
azure-pipelines.yml
File metadata and controls
363 lines (308 loc) · 11.7 KB
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
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
schedules:
- cron: "0 0 * * 6"
displayName: Daily midnight build
branches:
include:
- master
always: true
variables:
YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn
parameters:
- name: initSteps
type: stepList
default:
- task: NodeTool@0
inputs:
versionSpec: '12.x'
- bash: npm install -g yarn
displayName: 'Install Yarn'
- task: Cache@2
inputs:
key: 'yarn | "$(Agent.OS)" | yarn.lock'
restoreKeys: |
yarn | "$(Agent.OS)"
yarn
path: $(YARN_CACHE_FOLDER)
displayName: Cache Yarn packages
- bash: yarn --frozen-lockfile
displayName: "Install Deps"
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
displayName: 'Use Python $(python.version)'
- bash: python -m pip install --upgrade pip wheel setuptools jupyterlab numpy "pyarrow>=2" "black==20.8b1" flake8-black
displayName: 'Install Python base dependencies'
condition: and(succeeded(), ne(variables['python.version'], '2.7'))
- bash: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
displayName: "Install wasm-pack"
- name: linuxInitSteps
type: stepList
default:
- bash: sudo node scripts/install_tools.js
displayName: "Linux System deps"
- name: macInitSteps
type: stepList
default:
- bash: brew install boost flatbuffers
displayName: "Mac System deps"
- name: windowsInitSteps
type: stepList
default:
- 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: choco install boost-msvc-14.1 flatc
displayName: "System deps"
- name: webassemblySteps
type: stepList
default:
- bash: yarn build_js --ci
displayName: "Build"
- bash: yarn test_js --quiet --ci
displayName: "Test"
env:
PSP_DOCKER: 1
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
testRunner: JUnit
testResultsFiles: 'junit.xml'
- name: pythonBuildSteps
type: stepList
default:
- script: yarn build_python --ci $(python_flag) $(manylinux_flag)
displayName: 'build'
- name: pythonBuildDockerSteps
type: stepList
default:
- bash: yarn build_python --ci $(python_flag) $(manylinux_flag)
displayName: 'build'
env:
PSP_DOCKER: 1
- name: pythonCoverageSteps
type: stepList
default:
- 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'
- name: pythonMacWheelSteps
type: stepList
default:
# Build a python wheel for Mac 10.14
- bash: yarn _wheel_python $(python_flag) --macos
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
displayName: 'Build wheel'
# Test the wheel
- bash: cd $(System.DefaultWorkingDirectory)/python/perspective/scripts && ./test_wheels.sh $(python_flag) --macos
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
displayName: 'Test Mac Wheel'
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/dist/'
artifactName: '$(artifact_name)'
- name: pythonLinuxWheelSteps
type: stepList
default:
# Build a python wheel for Manylinux
- bash: yarn _wheel_python --ci $(python_flag) $(manylinux_flag)
condition: and(succeeded(), ne(variables['manylinux_flag'], ''), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
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'], ''), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
displayName: 'Test Manylinux Wheel'
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
condition: and(succeeded(), ne(variables['manylinux_flag'], ''), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/wheelhouse/'
artifactName: '$(artifact_name)'
- name: pythonWindowsWheelSteps
type: stepList
default:
# Build a python wheel for Windows
- bash: yarn _wheel_python $(python_flag)
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
displayName: 'Build Windows Wheel'
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
condition: and(succeeded(), or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')))
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/dist/'
artifactName: '$(artifact_name)'
jobs:
- job: 'WebAssembly'
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
Base:
# Do we care to test elsewhere?
python.version: '3.9'
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.linuxInitSteps }}
- ${{ parameters.webassemblySteps }}
- task: PublishTestResults@2
condition: succeeded()
inputs:
testRunner: JUnit
testResultsFiles: 'junit.xml'
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/packages/perspective-viewer/screenshots/'
artifactName: "perspective-viewer-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid/screenshots/'
artifactName: "perspective-viewer-datagrid-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc/screenshots/'
artifactName: "perspective-viewer-d3fc-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/packages/perspective-workspace/screenshots/'
artifactName: "perspective-workspace-$(Build.BuildNumber)"
- 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 or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')) }}:
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'
Python39ManyLinux2010:
python.version: '3.9'
python_flag: '--python39'
manylinux_flag: '--manylinux2010'
artifact_name: 'cp39-cp39-manylinux2010_x86_64'
Python39ManyLinux2014:
python.version: '3.9'
python_flag: '--python39'
manylinux_flag: '--manylinux2014'
artifact_name: 'cp39-cp39-manylinux2014_x86_64'
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.pythonBuildDockerSteps }}
- ${{ parameters.pythonCoverageSteps }}
- ${{ parameters.pythonLinuxWheelSteps }}
- job: 'Windows'
pool:
vmImage: 'vs2017-win2016'
strategy:
matrix:
Python37:
python.version: '3.7'
python_flag: ''
artifact_name: 'cp37-cp37m-win64_amd'
${{ if or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')) }}:
Python36:
python.version: '3.6'
python_flag: '--python36'
artifact_name: 'cp36-cp36m-win64_amd'
Python38:
python.version: '3.8'
python_flag: '--python38'
artifact_name: 'cp38-cp38m-win64_amd'
Python39:
python.version: '3.9'
python_flag: '--python39'
artifact_name: 'cp39-cp39m-win64_amd'
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.windowsInitSteps }}
- ${{ parameters.pythonBuildSteps }}
- ${{ parameters.pythonWindowsWheelSteps }}
- job: 'MacOS_Catalina'
pool:
vmImage: 'macos-10.15'
strategy:
matrix:
Python39:
python.version: '3.9'
python_flag: '--python39'
artifact_name: 'cp39-cp39-macosx_10_15_x86_64'
${{ if or(startsWith(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['Build.Reason'], 'Schedule')) }}:
Python36:
python.version: '3.6'
python_flag: '--python36'
artifact_name: 'cp36-cp36m-macosx_10_15_x86_64'
Python37:
python.version: '3.7'
python_flag: ''
artifact_name: 'cp37-cp37m-macosx_10_15_x86_64'
Python38:
python.version: '3.8'
python_flag: '--python38'
artifact_name: 'cp38-cp38-macosx_10_15_x86_64'
steps:
- ${{ parameters.initSteps }}
- ${{ parameters.macInitSteps }}
- ${{ parameters.pythonBuildSteps }}
- ${{ parameters.pythonCoverageSteps }}
- ${{ parameters.pythonMacWheelSteps }}