-
Notifications
You must be signed in to change notification settings - Fork 23
/
azure-pipelines.yml
79 lines (78 loc) · 1.93 KB
/
azure-pipelines.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
79
trigger:
- master
- dev/*
jobs:
- job: Ubuntu_20_04_x64
timeoutInMinutes: 90
pool:
vmImage: ubuntu-20.04
variables:
compiler: gxx_linux-64
boost_version: 1.67.0
number_of_cores: nproc
python_name: python37
shared_lib: ON
steps:
- template: .azure-pipelines/linux_build.yml
- job: Ubuntu_20_04_x64_static
timeoutInMinutes: 90
pool:
vmImage: ubuntu-20.04
variables:
compiler: gxx_linux-64
boost_version: 1.67.0
number_of_cores: nproc
python_name: python37
shared_lib: OFF
steps:
- template: .azure-pipelines/linux_build.yml
- job: macOS_10_15_x64
timeoutInMinutes: 90
pool:
vmImage: macos-10.15
variables:
compiler: clangxx_osx-64
boost_version: 1.67.0
number_of_cores: sysctl -n hw.ncpu
python_name: python37
target_platform: 10.9
shared_lib: ON
steps:
- template: .azure-pipelines/mac_build.yml
- job: macOS_10_15_x64_static
timeoutInMinutes: 90
pool:
vmImage: macos-10.15
variables:
compiler: clangxx_osx-64
boost_version: 1.67.0
number_of_cores: sysctl -n hw.ncpu
python_name: python37
target_platform: 10.9
shared_lib: OFF
steps:
- template: .azure-pipelines/mac_build.yml
- job: Windows_VS2019_x64
timeoutInMinutes: 90
pool:
vmImage: windows-2019
variables:
compiler: vs2019_win-64
boost_version: 1.67.0
number_of_cores: "%NUMBER_OF_PROCESSORS%"
python_name: python37
shared_lib: ON
steps:
- template: .azure-pipelines/vs_build.yml
- job: Windows_VS2019_x64_static
timeoutInMinutes: 90
pool:
vmImage: windows-2019
variables:
compiler: vs2019_win-64
boost_version: 1.67.0
number_of_cores: "%NUMBER_OF_PROCESSORS%"
python_name: python37
shared_lib: OFF
steps:
- template: .azure-pipelines/vs_build.yml