forked from microsoft/NimbusML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vsts-ci.yml
51 lines (48 loc) · 1.14 KB
/
.vsts-ci.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
phases:
# Build all configurations for Windows
- template: /build/ci/phase-template.yml
parameters:
name: Windows
buildScript: build.cmd
buildMatrix:
Py36:
_configuration: RlsWinPy3.6
Py35:
_configuration: RlsWinPy3.5
Py27:
_configuration: RlsWinPy2.7
buildQueue:
name: Hosted VS2017
# Build all configurations for Mac
- template: /build/ci/phase-template.yml
parameters:
name: Mac
buildScript: ./build.sh
buildMatrix:
Py36:
_configuration: RlsMacPy3.6
buildQueue:
name: Hosted macOS
# Build all configurations for Linux
# Run tests on Ubuntu16
- template: /build/ci/phase-template.yml
parameters:
name: Linux_Ubuntu16
buildScript: ./build.sh
testDistro: ubuntu16
buildMatrix:
Py35:
_configuration: RlsLinPy3.5
buildQueue:
name: Hosted Ubuntu 1604
# Run tests on CentOS7
- template: /build/ci/phase-template.yml
parameters:
name: Linux_CentOS7
buildScript: ./build.sh
testDistro: centos7
buildMatrix:
Py27:
_configuration: RlsLinPy2.7
buildQueue:
name: Hosted Ubuntu 1604