-
Notifications
You must be signed in to change notification settings - Fork 854
Expand file tree
/
Copy path.vsts-ci.yml
More file actions
77 lines (68 loc) · 1.82 KB
/
.vsts-ci.yml
File metadata and controls
77 lines (68 loc) · 1.82 KB
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
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-20250720-1'
linuxVMImage: 'ubuntu-24.04'
linuxScaledPool: 'Ubuntu2404-20251016'
macOSVMImage: 'macOS-15'
macOSVMImage_UITests: 'macOS-14'
xCodeRoot: '/Applications/Xcode_26.0.1.app'
xCodeRoot_iOS_UITests: '/Applications/Xcode_15.3.app'
# Offline validation to improve build performance
NUGET_CERT_REVOCATION_MODE: offline
# Caching disabled because it does not improve performance in our pipelines
# but also causes stability issues where assemblies stay in a compressed form (!?)
# enable_package_cache: true
enable_dotnet_cache: true
enable_emsdk_cache: true
GlobalUnoCheckVersion: '1.34.0-dev.23'
DotNetSdkVersion: '10.0.105'
stages:
- template: build/ci/.azure-devops-stages.yml