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

Commit b5f4d2d

Browse files
author
Jarret Shook
authored
Merge pull request #17151 from jashook/disable_armlb_windows_jobs
Disable armlb windows jobs
2 parents 8e05975 + 6be32b2 commit b5f4d2d

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

netci.groovy

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1535,6 +1535,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
15351535
break
15361536

15371537
case 'Windows_NT':
1538+
if (architecture == "armlb") {
1539+
// Disable armlb windows jobs
1540+
break
1541+
}
1542+
15381543
// Triggers on the non-flow jobs aren't necessary here
15391544
if (!isFlowJob) {
15401545
break
@@ -2256,9 +2261,8 @@ Constants.allScenarios.each { scenario ->
22562261
}
22572262
break
22582263
case 'armlb':
2259-
if (os != 'Windows_NT') {
2260-
return
2261-
}
2264+
// Do not create armlb jobs
2265+
return
22622266
break
22632267
case 'x86':
22642268
if ((os != 'Ubuntu') && (os != 'Windows_NT')) {
@@ -2539,10 +2543,13 @@ Constants.allScenarios.each { scenario ->
25392543
if (os != "Ubuntu" && os != "Windows_NT") {
25402544
return
25412545
}
2542-
} else if (architecture == 'arm' || architecture == 'armlb') {
2546+
} else if (architecture == 'arm') {
25432547
if (os != 'Windows_NT') {
25442548
return
25452549
}
2550+
} else if (architecture == 'armlb') {
2551+
// Do not create armlb windows jobs.
2552+
return
25462553
} else if (architecture == 'x86') {
25472554
if (os != "Ubuntu") {
25482555
return

0 commit comments

Comments
 (0)