Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 3fca26c

Browse files
committed
Disable UAP tests in CI
1 parent ebe1468 commit 3fca26c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

buildpipeline/windows.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// TestOuter - If true, runs outerloop, if false runs just innerloop
99

1010
def submittedHelixJson = null
11-
def submitToHelix = (params.TGroup == 'netcoreapp' || params.TGroup == 'uap')
11+
def submitToHelix = (params.TGroup == 'netcoreapp')
1212

1313
simpleNode('Windows_NT','latest') {
1414
stage ('Checkout source') {
@@ -48,7 +48,7 @@ simpleNode('Windows_NT','latest') {
4848
if (submitToHelix) {
4949
archiveTests = 'true'
5050
}
51-
if (submitToHelix || params.TGroup == 'uapaot') {
51+
if (submitToHelix || params.TGroup == 'uap' || params.TGroup == 'uapaot') {
5252
additionalArgs += ' -SkipTests'
5353
}
5454
bat ".\\build-tests.cmd ${framework} -buildArch=${params.AGroup} -${params.CGroup}${additionalArgs} -- /p:RuntimeOS=win10 /p:ArchiveTests=${archiveTests}"

0 commit comments

Comments
 (0)