This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 147
/
azure-pipelines.yaml
88 lines (76 loc) · 2.18 KB
/
azure-pipelines.yaml
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
trigger:
- main
- refs/tags/*
pr:
- main
parameters:
# Note extended tests have not been enabled for GPS yet
- name: RunExtendedTests
displayName: Run Extended Tests? (disabled)
type: boolean
default: false
variables:
# Variables used by both AndroidX/GPS go in the template
- template: build/ci/variables.yml@androidx
# Variables only used by GPS go here
- name: skipUnitTests
value: true
resources:
repositories:
- repository: 1esPipelines
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release
- repository: internal-templates
type: github
name: xamarin/yaml-templates
endpoint: xamarin
ref: refs/heads/main
- repository: androidx
type: github
name: xamarin/androidx
endpoint: xamarin
ref: refs/heads/main
extends:
template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines
parameters:
pool:
name: AzurePipelines-EO
image: 1ESPT-Windows2022
os: windows
stages:
- stage: build_windows
displayName: Build - Windows
jobs:
- template: build/ci/build.yml@androidx
parameters:
name: windows
buildPool:
name: $(windowsAgentPoolName)
image: $(windowsImage)
os: windows
runAPIScan: true
- template: sign-artifacts/jobs/v2.yml@internal-templates
parameters:
artifactName: output-windows
usePipelineArtifactTasks: true
use1ESTemplate: true
condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/')
- stage: build_mac
displayName: Build - Mac
dependsOn:
jobs:
- template: build/ci/build.yml@androidx
parameters:
name: macos
buildPool:
name: $(macosAgentPoolName)
vmImage: $(macosImage)
os: macOS
- template: build/ci/stage-extended-tests.yml@androidx
parameters:
stageCondition: and(succeeded(), eq('${{ parameters.RunExtendedTests }}', 'true'))
buildPool:
name: $(windowsAgentPoolName)
image: $(windowsImage)
os: windows