This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy path.vsts-ci.yml
78 lines (75 loc) · 1.78 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
Py35:
_configuration: RlsMacPy3.5
Py27:
_configuration: RlsMacPy2.7
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:
Py36:
_configuration: RlsLinPy3.6
Py35:
_configuration: RlsLinPy3.5
Py27:
_configuration: RlsLinPy2.7
buildQueue:
name: Hosted Ubuntu 1604
# Run tests on Ubuntu14
- template: /build/ci/phase-template.yml
parameters:
name: Linux_Ubuntu14
buildScript: ./build.sh
testDistro: ubuntu14
buildMatrix:
Py36:
_configuration: RlsLinPy3.6
Py35:
_configuration: RlsLinPy3.5
Py27:
_configuration: RlsLinPy2.7
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:
Py36:
_configuration: RlsLinPy3.6
Py35:
_configuration: RlsLinPy3.5
Py27:
_configuration: RlsLinPy2.7
buildQueue:
name: Hosted Ubuntu 1604