forked from luncliff/coroutine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
83 lines (77 loc) · 2.14 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
80
81
82
83
#
# Author: github.com/luncliff ([email protected])
#
# References
# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops
# https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops#use-a-microsoft-hosted-agent
# https://github.com/Microsoft/azure-pipelines-image-generation/blob/master/images/win/Vs2019-Server2019-Readme.md
# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/conditions?view=azure-devops&tabs=yaml
#
jobs:
- job: vs2017_cmake_vs_msvc141
pool:
vmImage: "vs2017-win2016"
variables:
platform: x64
configuration: Debug
is_dynamic: True
steps:
- template: azure/steps-win-vs.yml
parameters:
toolset: v141
- job: vs2019_cmake_vs_msvc142
pool:
vmImage: "windows-2019"
variables:
platform: x64
configuration: Debug
is_dynamic: True
steps:
- template: azure/steps-win-vs.yml
parameters:
toolset: v142
- job: vs2017_cmake_ninja_clang8
pool:
vmImage: "vs2017-win2016"
variables:
visualstudio: 2017
configuration: Debug
is_dynamic: True
steps:
- template: azure/steps-win-llvm.yml
parameters:
llvm_version: "8.0.1"
- job: vs2019_cmake_ninja_clang8
pool:
vmImage: windows-2019
variables:
visualstudio: 2019
configuration: Debug
is_dynamic: True
steps:
- template: azure/steps-win-llvm.yml
parameters:
llvm_version: "8.0.1"
- job: ubuntu_cmake_clang8
pool:
vmImage: "ubuntu-latest"
variables:
configuration: Debug
is_dynamic: True
steps:
- template: azure/steps-ubuntu.yml
parameters:
cmake_cxx_compiler: "clang-8"
cmake_work_dir: "build-ub"
cmake_install_dir: "../install"
- job: mac_cmake_appleclang11
pool:
vmImage: "macos-latest"
variables:
configuration: Debug
is_dynamic: True
steps:
- template: azure/steps-mac.yml
parameters:
cmake_work_dir: "build-osx"
cmake_install_dir: "../install"