2019-11-25 21:44:10 +03:00
|
|
|
trigger:
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
|
|
|
- release/beta/*
|
|
|
|
- release/stable/*
|
2020-09-03 18:36:49 +03:00
|
|
|
- feature/*
|
2023-06-27 16:08:27 +03:00
|
|
|
- legacy/*
|
2022-05-17 23:16:19 +03:00
|
|
|
|
|
|
|
paths:
|
|
|
|
include:
|
|
|
|
- '/'
|
|
|
|
exclude:
|
|
|
|
- .dependabot/
|
|
|
|
- .github/
|
2022-05-18 07:25:24 +03:00
|
|
|
# don't trigger the CI if only docs files are changed
|
2022-05-17 23:16:19 +03:00
|
|
|
- doc/*
|
2022-05-18 07:25:24 +03:00
|
|
|
- '**/*.md'
|
2022-09-13 17:59:10 +03:00
|
|
|
- '*.md'
|
2023-03-12 15:24:44 +03:00
|
|
|
- 'build/cSpell.json'
|
2024-06-14 19:19:29 +03:00
|
|
|
- 'build/.markdownlint.json'
|
2022-05-17 23:16:19 +03:00
|
|
|
|
2019-11-25 21:44:10 +03:00
|
|
|
pr:
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
|
|
|
- release/beta/*
|
|
|
|
- release/stable/*
|
2021-06-01 15:15:45 +03:00
|
|
|
- feature/*
|
2023-06-27 16:08:27 +03:00
|
|
|
- legacy/*
|
2021-06-01 15:15:45 +03:00
|
|
|
|
2020-09-03 18:36:49 +03:00
|
|
|
paths:
|
|
|
|
include:
|
|
|
|
- '/'
|
|
|
|
exclude:
|
|
|
|
- .dependabot/
|
|
|
|
- .github/
|
2022-05-18 07:25:24 +03:00
|
|
|
# don't trigger the CI if only docs files are changed
|
2022-02-21 22:41:25 +03:00
|
|
|
- doc/*
|
2022-05-18 07:25:24 +03:00
|
|
|
- '**/*.md'
|
2022-08-25 04:25:55 +03:00
|
|
|
- '*.md'
|
2023-03-12 15:24:44 +03:00
|
|
|
- 'build/cSpell.json'
|
2024-06-14 19:19:29 +03:00
|
|
|
- 'build/.markdownlint.json'
|
2020-09-04 16:22:54 +03:00
|
|
|
|
2019-04-15 22:56:41 +03:00
|
|
|
resources:
|
|
|
|
containers:
|
|
|
|
- container: nv-bionic-wasm
|
2020-09-21 21:42:08 +03:00
|
|
|
image: unoplatform/wasm-build:3.0
|
2023-12-18 19:59:36 +03:00
|
|
|
# Ensures that Chromium has enough room to avoid net::ERR_INSUFFICIENT_RESOURCES errors
|
2023-12-18 06:41:33 +03:00
|
|
|
options: "--shm-size=2gb"
|
2019-04-15 22:56:41 +03:00
|
|
|
|
2020-02-24 18:21:10 +03:00
|
|
|
variables:
|
2021-01-16 00:51:12 +03:00
|
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
2021-12-09 00:38:00 +03:00
|
|
|
windows2019HostedVMImage: 'windows-2019'
|
2021-08-25 18:49:47 +03:00
|
|
|
windows2022HostedVMImage: 'windows-2022'
|
2024-05-09 20:25:16 +03:00
|
|
|
windowsScaledPool: 'Windows2022-20240421'
|
2020-09-21 21:42:08 +03:00
|
|
|
linuxVMImage: 'ubuntu-latest'
|
2023-09-25 23:19:51 +03:00
|
|
|
linuxScaledPool: 'Ubuntu2204-20230918'
|
2024-06-06 15:07:03 +03:00
|
|
|
macOSVMImage: 'macOS-14'
|
|
|
|
macOSVMImage_UITests: 'macOS-14'
|
|
|
|
xCodeRoot: '/Applications/Xcode_15.4.app'
|
|
|
|
xCodeRoot_iOS_UITests: '/Applications/Xcode_15.4.app'
|
2020-02-24 18:21:10 +03:00
|
|
|
|
2023-09-24 18:18:27 +03:00
|
|
|
# Offline validation to improve build performance
|
|
|
|
NUGET_CERT_REVOCATION_MODE: offline
|
|
|
|
|
2022-10-07 03:40:31 +03:00
|
|
|
# https://github.com/microsoft/azure-pipelines-tasks/issues/11864
|
|
|
|
#enable_package_cache: true
|
2022-08-22 17:38:01 +03:00
|
|
|
|
2023-06-09 20:36:26 +03:00
|
|
|
stages:
|
|
|
|
- template: build/ci/.azure-devops-stages.yml
|