forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
538 lines (441 loc) · 18.4 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
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
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: '15.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>=3.0.14" 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 lint_js
displayName: "Lint"
- bash: yarn build_js --ci
displayName: "Build"
- bash: yarn test_js --quiet --ci
displayName: "Test"
env:
PSP_DOCKER: 1
- name: pythonBuildSteps
type: stepList
default:
- script: yarn build_python --ci $(python_flag) $(manylinux_flag)
displayName: 'build'
- name: pythonBuildDockerSteps
type: stepList
default:
- bash: yarn lint_python
displayName: "Lint"
- 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: pythonSDistSteps
type: stepList
default:
# Build a python sdist
- bash: export SDIST_PUBLISH_NAME=perspective-python-$(Build.SourceBranchName)-$(Build.BuildId).tar.gz && cd $(System.DefaultWorkingDirectory)/python/perspective && ./scripts/build_sdist.sh
displayName: 'Build sdist'
# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/dist/'
artifactName: 'perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)'
- 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'], ''))
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)'
- 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-latest"
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)/rust/perspective-viewer/test/screenshots/'
artifactName: "perspective-viewer-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid/test/screenshots/'
artifactName: "perspective-viewer-datagrid-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc/test/screenshots/'
artifactName: "perspective-viewer-d3fc-$(Build.BuildNumber)"
- task: PublishPipelineArtifact@1
condition: failed()
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/packages/perspective-workspace/test/screenshots/'
artifactName: "perspective-workspace-$(Build.BuildNumber)"
# `yarn pack` the public packages so the Jupyterlab tests can use the
# already-built `dist` folder for perspective, perspective-viewer,
# perspective-viewer-datagrid and perspective-viewer-d3fc.
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective && yarn pack --filename=perspective-dist.tgz
displayName: "yarn pack perspective"
- bash: cd $(System.DefaultWorkingDirectory)/rust/perspective-viewer && yarn pack --filename=perspective-viewer-dist.tgz
displayName: "yarn pack perspective-viewer"
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid && yarn pack --filename=perspective-viewer-datagrid-dist.tgz
displayName: "yarn pack perspective-viewer-datagrid"
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc && yarn pack --filename=perspective-viewer-d3fc-dist.tgz
displayName: "yarn pack perspective-viewer-d3fc"
- bash: cd $(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab && yarn pack --filename=perspective-jupyterlab-dist.tgz
displayName: "yarn pack perspective-jupyterlab"
# Upload the packed versions
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective/perspective-dist.tgz"
artifactName: "perspective-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/rust/perspective-viewer/perspective-viewer-dist.tgz"
artifactName: "perspective-viewer-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid/perspective-viewer-datagrid-dist.tgz"
artifactName: "perspective-viewer-datagrid-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc/perspective-viewer-d3fc-dist.tgz"
artifactName: "perspective-viewer-d3fc-dist"
- task: PublishPipelineArtifact@1
inputs:
targetPath: "$(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab/perspective-jupyterlab-dist.tgz"
artifactName: "perspective-jupyterlab-dist"
- job: 'Linux'
pool:
vmImage: "ubuntu-latest"
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: 'Linux_Python_SDist'
# pool:
# vmImage: 'ubuntu-18.04'
# strategy:
# matrix:
# Python37:
# python.version: '3.7'
# python_flag: ''
# steps:
# - ${{ parameters.initSteps }}
# - ${{ parameters.linuxInitSteps }}
# - ${{ parameters.pythonBuildSteps }}
# - ${{ parameters.pythonSDistSteps }}
- 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')) }}:
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 }}
- job: "Jupyterlab"
dependsOn: ["WebAssembly", "Linux"]
pool:
vmImage: "ubuntu-latest"
variables:
python.version: "3.7"
python_flag: ""
manylinux_flag: "--manylinux2010"
artifact_name: "cp37-cp37m-manylinux2010_x86_64"
steps:
# don't use InitSteps because we don't want to cache local puppeteer
- task: NodeTool@0
inputs:
versionSpec: '15.x'
- bash: npm install -g yarn
displayName: 'Install Yarn'
- 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"
- task: DownloadPipelineArtifact@2
displayName: "Download Python 3.7 Perspective Wheel"
inputs:
artifact: $(artifact_name)
path: $(System.DefaultWorkingDirectory)/wheel
- bash: python -m pip install $(System.DefaultWorkingDirectory)/wheel/*.whl
displayName: "Install perspective-python from wheel"
- bash: jupyter labextension install @jupyter-widgets/jupyterlab-manager
displayName: "Install Labextensions"
- bash: yarn add -W --dev [email protected]
displayName: "Install Puppeteer"
- task: DownloadPipelineArtifact@2
displayName: "Download perspective dist"
inputs:
artifact: "perspective-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-viewer dist"
inputs:
artifact: "perspective-viewer-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-viewer-datagrid dist"
inputs:
artifact: "perspective-viewer-datagrid-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-viewer-d3fc dist"
inputs:
artifact: "perspective-viewer-d3fc-dist"
path: $(System.DefaultWorkingDirectory)
- task: DownloadPipelineArtifact@2
displayName: "Download perspective-jupyterlab dist"
inputs:
artifact: "perspective-jupyterlab-dist"
path: $(System.DefaultWorkingDirectory)
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective package
displayName: "Install perspective dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-viewer-dist.tgz -C $(System.DefaultWorkingDirectory)/rust/perspective-viewer package
displayName: "Install perspective-viewer dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-viewer-datagrid-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective-viewer-datagrid package
displayName: "Install perspective-viewer-datagrid dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-viewer-d3fc-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective-viewer-d3fc package
displayName: "Install perspective-viewer-d3fc dist"
- bash: tar --strip-components=1 -xvf $(System.DefaultWorkingDirectory)/perspective-jupyterlab-dist.tgz -C $(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab package
displayName: "Install perspective-jupyterlab dist"
- bash: jupyter labextension install $(System.DefaultWorkingDirectory)/packages/perspective-jupyterlab
displayName: "Install perspective-jupyterlab labextension"
- bash: yarn test_js --jupyter --debug
displayName: "Run Jupyterlab tests"
env:
PACKAGE: perspective-jupyterlab