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
/
.vsts-ci.yml
72 lines (67 loc) · 1.69 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
phases:
# Build all configurations for Windows
- template: /build/ci/phase-template.yml
parameters:
name: Windows
buildScript: build.cmd
buildMatrix:
Py38:
_configuration: RlsWinPy3.8
Py37:
_configuration: RlsWinPy3.7
Py36:
_configuration: RlsWinPy3.6
buildQueue:
name: Hosted VS2017
testOptions: --includeExtendedTests
# Build all configurations for Mac
- template: /build/ci/phase-template.yml
parameters:
name: Mac
buildScript: ./build.sh
buildMatrix:
Py38:
_configuration: RlsMacPy3.8
Py37:
_configuration: RlsMacPy3.7
buildQueue:
name: Hosted macOS
testOptions: --includeExtendedTests
# Build all configurations for Linux
# Run build & tests on Ubuntu16 for Python3.8
- template: /build/ci/phase-template.yml
parameters:
name: Linux_Python38
buildScript: ./build.sh
testDistro: python38
buildMatrix:
Py38:
_configuration: RlsLinPy3.8
buildQueue:
name: Hosted Ubuntu 1604
testOptions: --includeExtendedTests
# Run build & tests on Ubuntu16
- template: /build/ci/phase-template.yml
parameters:
name: Linux_Ubuntu16
buildScript: ./build.sh
testDistro: ubuntu16
buildMatrix:
Py37:
_configuration: RlsLinPy3.7
Py36:
_configuration: RlsLinPy3.6
buildQueue:
name: Hosted Ubuntu 1604
testOptions: --includeExtendedTests
# Run build & tests on CentOS7
- template: /build/ci/phase-template.yml
parameters:
name: Linux_CentOS7
buildScript: ./build.sh
testDistro: centos7
buildMatrix:
Py37:
_configuration: RlsLinPy3.7
buildQueue:
name: Hosted Ubuntu 1604