-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathazure-pipelines.yml
43 lines (42 loc) · 1020 Bytes
/
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
pool:
vmImage: $(imageName)
jobs:
- job: Linux
pool:
vmImage: ubuntu-latest
strategy:
matrix:
py311:
PYTHON_VERSION: 3.11
py312:
PYTHON_VERSION: 3.12
steps:
- script: bash ci/build_unix.sh
- job: lint
pool:
vmImage: ubuntu-latest
steps:
- script: bash run_lint.sh
- job: OSX
pool:
vmImage: macOS-latest
strategy:
matrix:
py310:
PYTHON_VERSION: 3.10
steps:
- script: |
sudo xcode-select -s /Applications/Xcode_13.2.1.app
bash ci/build_unix.sh
- job: Windows
pool:
vmImage: windows-2019
strategy:
matrix:
windows_py310:
PYTHON_VERSION: 3.10
steps:
# https://learn.microsoft.com/en-us/azure/devops/pipelines/ecosystems/anaconda?view=azure-devops&tabs=windows
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
displayName: Add conda to PATH
- script: ci/build_windows.bat