forked from serenity-rs/serenity
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathazure-pipelines.yml
50 lines (43 loc) · 1.21 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
jobs:
- template: 'azure-template-unix.yml'
parameters:
name: 'macOS_stable'
vmImage: 'xcode9-macos10.13'
toolchain: 'stable'
- template: 'azure-template-unix.yml'
parameters:
name: 'macOS_beta'
vmImage: 'xcode9-macos10.13'
toolchain: 'beta'
- template: 'azure-template-unix.yml'
parameters:
name: 'macOS_nightly'
vmImage: 'xcode9-macos10.13'
toolchain: 'nightly'
- template: 'azure-template-unix.yml'
parameters:
name: 'Linux_stable'
vmImage: 'ubuntu-16.04'
toolchain: 'stable'
- template: 'azure-template-unix.yml'
parameters:
name: 'macOS_stable_no_cache'
vmImage: 'xcode9-macos10.13'
toolchain: 'stable'
features: 'builder client framework gateway model http standard_framework utils rustls_backend'
- template: 'azure-template-unix.yml'
parameters:
name: 'macOS_no_gateway'
vmImage: 'xcode9-macos10.13'
toolchain: 'stable'
features: 'model http rustls_backend'
- template: 'azure-template-win.yml'
parameters:
name: 'Windows_stable'
vmImage: 'vs2017-win2016'
toolchain: 'stable'
- template: 'azure-build-examples.yml'
parameters:
name: 'macOS_build_examples'
vmImage: 'xcode9-macos10.13'
toolchain: 'stable'