Skip to content

Commit e79bbfc

Browse files
authored
Create pr-internal.yaml (#10607)
1 parent 3019505 commit e79bbfc

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

pipelines/pr-internal.yaml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Build for PR validation via Unity 2019 and 2020
2+
3+
variables:
4+
- template: config/settings.yml
5+
6+
jobs:
7+
- job: CodeValidation
8+
pool:
9+
vmImage: windows-2019
10+
steps:
11+
- template: templates/validation.yml
12+
parameters:
13+
# For mrtk_pr builds, validation scripts (code and docs) should be scoped to only
14+
# the set of changed files, so that we can save some time. There's no need to
15+
# check unchanged files for code style/doc style violations.
16+
scopedValidation: true
17+
18+
- job: Unity2019Validation
19+
timeoutInMinutes: 90
20+
pool:
21+
name: Analog-Unity
22+
steps:
23+
- template: templates/common.yml
24+
parameters:
25+
# For mrtk_pr builds, don't build all flavors to reduce the amount of time
26+
# taken for each validation run. With this configuration, only the Standalone
27+
# configuration is built.
28+
# Note that all of the flavors are still built during the rolling CI.
29+
# If there are failures in rolling CI in any of these tasks, we should re-enable
30+
# the specific flavors below that are experiencing failures in CI (for example,
31+
# if we're actively working on features that have a lot of churn on underlying
32+
# WMR APIs, buildUWPArm would be a good candidate to re-enable)
33+
buildUWPX86: false
34+
buildUWPArm: false
35+
buildUWPDotNet: false
36+
UnityVersion: $(Unity2019VersionInternal)
37+
38+
- job: Unity2020Validation
39+
timeoutInMinutes: 90
40+
pool:
41+
name: Analog-Unity
42+
steps:
43+
- template: templates/common.yml
44+
parameters:
45+
buildUWPX86: false
46+
buildUWPArm: false
47+
buildUWPDotNet: false
48+
UnityVersion: $(Unity2020VersionInternal)
49+
- template: templates/end.yml

0 commit comments

Comments
 (0)