File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Adapted from https://github.com/numba/numba/blob/master/azure-pipelines.yml
2
+ jobs :
3
+ # Mac and Linux could potentially use the same template
4
+ # except it isn't clear how to use a different build matrix
5
+ # for each, so for now they are separate
6
+ - template : ci/azure/macos.yml
7
+ parameters :
8
+ name : macOS
9
+ vmImage : xcode9-macos10.13
10
+ - template : ci/azure/linux.yml
11
+ parameters :
12
+ name : Linux
13
+ vmImage : ubuntu-16.04
14
+
15
+ # Windows Python 2.7 needs VC 9.0 installed, and not sure
16
+ # how to make that a conditional task, so for now these are
17
+ # separate templates as well
18
+ - template : ci/azure/windows.yml
19
+ parameters :
20
+ name : Windows
21
+ vmImage : vs2017-win2017
22
+ - template : ci/azure/windows-py27.yml
23
+ parameters :
24
+ name : WindowsPy27
25
+ vmImage : vs2017-win2017
You can’t perform that action at this time.
0 commit comments