-
Notifications
You must be signed in to change notification settings - Fork 724
/
.vsts-ci.yml
71 lines (63 loc) · 1.59 KB
/
.vsts-ci.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
trigger:
branches:
include:
- master
- release/beta/*
- release/stable/*
- feature/*
- legacy/*
paths:
include:
- '/'
exclude:
- .dependabot/
- .github/
# don't trigger the CI if only docs files are changed
- doc/*
- '**/*.md'
- '*.md'
- 'build/cSpell.json'
- 'build/.markdownlint.json'
pr:
branches:
include:
- master
- release/beta/*
- release/stable/*
- feature/*
- legacy/*
paths:
include:
- '/'
exclude:
- .dependabot/
- .github/
# don't trigger the CI if only docs files are changed
- doc/*
- '**/*.md'
- '*.md'
- 'build/cSpell.json'
- 'build/.markdownlint.json'
resources:
containers:
- container: nv-bionic-wasm
image: unoplatform/wasm-build:3.0
# Ensures that Chromium has enough room to avoid net::ERR_INSUFFICIENT_RESOURCES errors
options: "--shm-size=2gb"
variables:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
windows2019HostedVMImage: 'windows-2019'
windows2022HostedVMImage: 'windows-2022'
windowsScaledPool: 'Windows2022-20240421'
linuxVMImage: 'ubuntu-latest'
linuxScaledPool: 'Ubuntu2204-20230918'
macOSVMImage: 'macOS-15'
macOSVMImage_UITests: 'macOS-14'
xCodeRoot: '/Applications/Xcode_16.app'
xCodeRoot_iOS_UITests: '/Applications/Xcode_15.3.app'
# Offline validation to improve build performance
NUGET_CERT_REVOCATION_MODE: offline
# https://github.com/microsoft/azure-pipelines-tasks/issues/11864
#enable_package_cache: true
stages:
- template: build/ci/.azure-devops-stages.yml