-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
43 lines (41 loc) · 1.12 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
trigger:
- master
jobs:
- job: 'Linux'
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
"Python 3.6, 32 bit":
python.version: '3.6'
"Python 3.7, 32 bit":
python.version: '3.7'
steps:
- script: echo '##vso[task.prependpath]$(HOME)/miniconda3/bin'
displayName: 'Add Python to Path'
- script: ci/env_linux.sh
displayName: 'Create Environment'
- script: source activate test-env && ci/run_script.sh
displayName: 'Run Python Scripts'
- job: 'Windows'
pool:
vmImage: 'windows-latest'
strategy:
matrix:
"Python 3.6, 32 bit":
python.version: '3.6.8'
python.pkg: 'pythonx86'
"Python 3.7, 32 bit":
python.version: '3.7.5'
python.pkg: 'pythonx86'
"Python 3.8, 32 bit":
python.version: '3.8.0'
python.pkg: 'pythonx86'
steps:
- task: NuGetToolInstaller@0
- powershell: Write-Host "##vso[task.prependpath]$PWD\pyinstall\$(python.pkg)\tools"
displayName: 'Add Python to Path'
- bash: ci/env_windows.sh
displayName: 'Create Environment'
- bash: ci/run_script.sh
displayName: 'Run Python Scripts'