forked from microsoft/azure-pipelines-tasks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-pipelines.yml
56 lines (50 loc) · 1.3 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
trigger:
- master
- releases/*
jobs:
# All tasks on Windows
- job: build_all_windows
displayName: Build all tasks (Windows)
condition: and(succeeded(), not(variables.task), eq(variables.os, 'Windows_NT'))
pool:
vmImage: vs2017-win2016
steps:
- template: ci/build-all-steps.yml
parameters:
os: Windows_NT
# Publish on Windows
- job: publish_windows
displayName: Publish
dependsOn:
- build_all_windows
condition: and(succeeded(), ne(variables['build.reason'], 'PullRequest'), eq(variables.os, 'Windows_NT'))
pool:
vmImage: vs2017-win2016
steps:
- template: ci/publish-steps.yml
# All tasks on Linux
- job: build_all_linux
displayName: Build all tasks (Linux)
condition: and(succeeded(), not(variables.task), eq(variables.os, 'Linux'))
pool:
vmImage: ubuntu-16.04
steps:
- template: ci/build-all-steps.yml
parameters:
os: Linux
# All tasks on macOS
- job: build_all_darwin
displayName: Build all tasks (macOS)
condition: and(succeeded(), not(variables.task), eq(variables.os, 'Darwin'))
pool:
vmImage: macos-10.13
steps:
- template: ci/build-all-steps.yml
parameters:
os: Darwin
# Single task
- job: buildSingle
displayName: Build single task
condition: and(succeeded(), variables.task)
steps:
- template: ci/build-single-steps.yml