forked from ms-iot/ros2_dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
59 lines (54 loc) · 1.34 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
trigger:
branches:
include:
- master
paths:
exclude:
- README.md
variables:
VisualStudioVersion: 15.0
jobs:
- job: 'uwp_32'
timeoutInMinutes: 90
displayName: 'Build all tasks (UWP 32)'
condition: and(succeeded(), not(variables.task), eq(variables.platform, 'uwp_32'))
pool:
vmImage: vs2017-win2016
steps:
- template: ci/build-all-steps.yml
parameters:
arch: 'Win32'
platform: 'uwp_32'
- job: 'uwp_64'
displayName: 'Build all tasks (UWP 64)'
timeoutInMinutes: 90
condition: and(succeeded(), not(variables.task), eq(variables.platform, 'uwp_64'))
pool:
vmImage: vs2017-win2016
steps:
- template: ci/build-all-steps.yml
parameters:
arch: 'x64'
platform: 'uwp_64'
- job: 'uwp_arm'
displayName: 'Build all tasks (UWP ARM)'
timeoutInMinutes: 90
condition: and(succeeded(), not(variables.task), eq(variables.platform, 'uwp_arm'))
pool:
vmImage: vs2017-win2016
steps:
- template: ci/build-all-steps.yml
parameters:
arch: 'ARM'
platform: 'uwp_arm'
- job: 'desktop'
displayName: 'Build all tasks (Desktop)'
timeoutInMinutes: 90
condition: and(succeeded(), not(variables.task), eq(variables.platform, 'desktop'))
pool:
vmImage: vs2017-win2016
steps:
- template: ci/build-all-steps.yml
parameters:
arch: 'x64'
platform: 'desktop'