forked from dotnet/android-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
101 lines (87 loc) · 2.49 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
trigger:
- main
- refs/tags/*
pr:
- main
schedules:
- cron: '0 0 * * *'
displayName: Nightly Extended Tests
branches:
include:
- main
parameters:
- name: RunExtendedTests
displayName: Run Extended Tests?
type: boolean
default: false
- name: RunDotnetNextTest
displayName: Run on .NET next preview?
type: boolean
default: false
variables:
# Variables used by both AndroidX/GPS go in the template
- template: build/ci/variables.yml@self
# Variables only used by AndroidX go here
- name: skipUnitTests
value: false
- name: skipSamplesTests
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
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@self
parameters:
name: windows
buildPool:
name: $(windowsAgentPoolName)
image: $(windowsImage)
os: windows
runAPIScan: true
runDotnetNextTest: ${{ parameters.RunDotnetNextTest }}
- stage: build_mac
displayName: Build - Mac
dependsOn:
jobs:
- template: build/ci/build.yml@self
parameters:
name: macos
buildPool:
name: $(macosAgentPoolName)
os: macOS
demands:
- macOS.Name -equals Sonoma
- macOS.Architecture -equals x64
runDotnetNextTest: ${{ parameters.RunDotnetNextTest }}
- template: build/ci/stage-standard-tests.yml@self
parameters:
buildPool:
name: $(windowsAgentPoolName)
image: $(windowsImage)
os: windows
- template: build/ci/stage-extended-tests.yml@self
parameters:
stageCondition: and(succeeded(), ne('$(skipUnitTests)', 'true'), or(eq('${{ parameters.RunExtendedTests }}', 'true'), eq(variables['Build.CronSchedule.DisplayName'], 'Nightly Extended Tests')))
buildPool:
name: $(windowsAgentPoolName)
image: $(windowsImage)
os: windows
- template: build/ci/stage-sign-artifacts.yml@self