File tree Expand file tree Collapse file tree 4 files changed +37
-6
lines changed
Assets/MRTK/Tests/PlayModeTests Expand file tree Collapse file tree 4 files changed +37
-6
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,8 @@ public IEnumerator ArticulatedCursorState()
138
138
// Move back so the cursor is no longer on the object
139
139
yield return hand . MoveTo ( offObjectPos , numFramesPerMove ) ;
140
140
VerifyCursorStateFromPointers ( inputSystem . FocusProvider . GetPointers < ShellHandRayPointer > ( ) , CursorStateEnum . Interact ) ;
141
+
142
+ yield return null ;
141
143
}
142
144
143
145
[ UnityTest ]
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ variables:
2
2
# Unity version on AIPMR build agents
3
3
Unity2018Version : Unity2018.4.26f1
4
4
Unity2019Version : Unity2019.4.8f1
5
+ Unity2020Version : Unity2020.3.5f1
5
6
# Unity version on internal build agents (release builds)
6
7
Unity2018VersionInternal : Unity2018.4.26f1
7
8
Unity2019VersionInternal : Unity2019.4.17f1
Original file line number Diff line number Diff line change 1
- # Build for PR validation.
1
+ # Build for PR validation via Unity 2020 .
2
2
3
3
variables :
4
4
- template : config/settings.yml
5
5
6
6
jobs :
7
- - job : PRValidation
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 : Unity2020Validation
8
19
timeoutInMinutes : 90
9
20
pool :
10
21
name : On-Prem Unity
11
22
demands :
12
- - ${{ variables.Unity2019Version }}
23
+ - ${{ variables.Unity2020Version }}
13
24
- COG-UnityCache-WUS2-01
14
25
- SDK_18362 -equals TRUE
15
26
- VS2019 -equals TRUE
27
38
buildUWPX86 : false
28
39
buildUWPArm : false
29
40
buildUWPDotNet : false
30
- UnityVersion : $(Unity2019Version )
41
+ UnityVersion : $(Unity2020Version )
31
42
32
43
- template : templates/end.yml
Original file line number Diff line number Diff line change 1
- # Build for PR validation.
1
+ # Build for PR validation via Unity 2018 and 2019
2
2
3
3
variables :
4
4
- template : config/settings.yml
15
15
# check unchanged files for code style/doc style violations.
16
16
scopedValidation : true
17
17
18
- - job : UnityValidation
18
+ - job : Unity2018Validation
19
19
timeoutInMinutes : 90
20
20
pool :
21
21
name : On-Prem Unity
38
38
buildUWPArm : false
39
39
buildUWPDotNet : false
40
40
UnityVersion : $(Unity2018Version)
41
+
42
+ - job : Unity2019Validation
43
+ timeoutInMinutes : 90
44
+ pool :
45
+ name : On-Prem Unity
46
+ demands :
47
+ - ${{ variables.Unity2019Version }}
48
+ - COG-UnityCache-WUS2-01
49
+ - SDK_18362 -equals TRUE
50
+ - VS2019 -equals TRUE
51
+ steps :
52
+ - template : templates/common.yml
53
+ parameters :
54
+ buildUWPX86 : false
55
+ buildUWPArm : false
56
+ buildUWPDotNet : false
57
+ UnityVersion : $(Unity2019Version)
41
58
- template : templates/end.yml
You can’t perform that action at this time.
0 commit comments