File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,28 @@ jobs:
61
61
displayName: 'Run tests'
62
62
63
63
- job : ' Conda_Linux'
64
+ strategy :
65
+ matrix :
66
+ Python36 :
67
+ PYTHON_VERSION : ' 3.6'
68
+ Python37 :
69
+ PYTHON_VERSION : ' 3.7'
70
+ Python38 :
71
+ PYTHON_VERSION : ' 3.5'
64
72
pool :
65
73
vmImage : ' Ubuntu 16.04'
66
74
steps :
67
75
- template : conda-steps.yml
68
76
69
77
- job : ' Conda_macOS'
78
+ strategy :
79
+ matrix :
80
+ Python36 :
81
+ PYTHON_VERSION : ' 3.6'
82
+ Python37 :
83
+ PYTHON_VERSION : ' 3.7'
84
+ Python38 :
85
+ PYTHON_VERSION : ' 3.5'
70
86
pool :
71
87
vmImage : ' macOS-10.15'
72
88
variables :
83
99
- job : ' Conda_Windows'
84
100
strategy :
85
101
matrix :
86
- Python35 :
87
- PYTHON_VERSION : ' 3.5'
88
102
Python36 :
89
103
PYTHON_VERSION : ' 3.6'
90
104
Python37 :
Original file line number Diff line number Diff line change 8
8
- script : |
9
9
cd conda-recipes
10
10
source activate buildEnv
11
- conda build -c vanderaa --output-folder ../conda_packages smurff
11
+ conda build --python $(PYTHON_VERSION) - c vanderaa --output-folder ../conda_packages smurff
12
12
displayName: Build using 'conda build'
13
13
- task : PublishBuildArtifacts@1
14
14
inputs : {pathtoPublish: 'conda_packages'}
You can’t perform that action at this time.
0 commit comments