-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
44 lines (41 loc) · 883 Bytes
/
azure-pipelines.yml
File metadata and controls
44 lines (41 loc) · 883 Bytes
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
resources:
containers:
- container: linux
image: jaci/azure-native-linux:2018.11.14
options: --cap-add SYS_PTRACE
# ^ Need SYS_PTRACE for Clang ASAN
jobs:
- job: Windows
pool:
vmImage: 'VS2017-Win2016'
variables:
PlatformName: "win"
steps:
- template: azure-init.yml
- template: azure-steps.yml
parameters:
env: { }
- job: macOS
pool:
vmImage: 'macOS-10.13'
variables:
PlatformName: "mac"
steps:
- template: azure-init.yml
- template: azure-steps.yml
parameters:
env: { }
- job: Linux
pool:
vmImage: 'Ubuntu-16.04'
container: linux
variables:
PlatformName: "linux"
steps:
- task: Gradle@2
inputs:
workingDirectory: ''
gradleWrapperFile: 'gradlew'
tasks: 'installRoboRioToolchain installRaspbianToolchain'
options: '--scan --stacktrace'
- template: azure-steps.yml