forked from microsoft/azure-pipelines-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
110 lines (99 loc) · 2.95 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
trigger:
- master
- releases/*
- node6hotfixes/*
resources:
repositories:
- repository: AzureDevOps
type: git
endpoint: AzureDevOps
name: AzureDevOps/AzureDevOps
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
timeoutInMinutes: 90
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
# Courtesy push on Windows
- job: courtesy_push_windows
displayName: Courtesy Push
dependsOn:
- publish_windows
condition: and(succeeded(), in(variables['build.reason'], 'Schedule', 'Manual'), eq(variables['COURTESY_PUSH'], 'true'))
pool:
vmImage: vs2017-win2016
steps:
- powershell: |
$week = (Invoke-WebRequest https://whatsprintis.it -Headers @{"Accept"= "application/json"} | ConvertFrom-Json).week
Write-Host "##vso[task.setvariable variable=week]$week"
displayName: "Determine if its the last week of the sprint"
- checkout: AzureDevOps
fetchDepth: 1
persistCredentials: true
condition: and(succeeded(), eq(variables['WEEK'], '3'))
- checkout: self
condition: and(succeeded(), eq(variables['WEEK'], '3'))
- template: ci/courtesy-push.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.15
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
- job: buildSharedNpm_win
displayName: Build shared npm packages (Win)
condition: and(succeeded(), not(variables.task), eq(variables.os, 'Windows_NT'))
pool:
vmImage: vs2017-win2016
steps:
- template: ci/build-common-npm.yml
- job: buildSharedNpm_linux
displayName: Build shared npm packages (Linux)
condition: and(succeeded(), not(variables.task), eq(variables.os, 'Linux'))
pool:
vmImage: ubuntu-16.04
steps:
- template: ci/build-common-npm.yml
- job: buildSharedNpm_darwin
displayName: Build shared npm packages (macOS)
condition: and(succeeded(), not(variables.task), eq(variables.os, 'Darwin'))
pool:
vmImage: macos-10.15
steps:
- template: ci/build-common-npm.yml