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

Commit 6be32b2

Browse files
author
jashook
committed
Disable armlb windows jobs
1 parent 1ee83de commit 6be32b2

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
@@ -1530,6 +1530,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
15301530
break
15311531

15321532
case 'Windows_NT':
1533+
if (architecture == "armlb") {
1534+
// Disable armlb windows jobs
1535+
break
1536+
}
1537+
15331538
// Triggers on the non-flow jobs aren't necessary here
15341539
if (!isFlowJob) {
15351540
break
@@ -2251,9 +2256,8 @@ Constants.allScenarios.each { scenario ->
22512256
}
22522257
break
22532258
case 'armlb':
2254-
if (os != 'Windows_NT') {
2255-
return
2256-
}
2259+
// Do not create armlb jobs
2260+
return
22572261
break
22582262
case 'x86':
22592263
if ((os != 'Ubuntu') && (os != 'Windows_NT')) {
@@ -2534,10 +2538,13 @@ Constants.allScenarios.each { scenario ->
25342538
if (os != "Ubuntu" && os != "Windows_NT") {
25352539
return
25362540
}
2537-
} else if (architecture == 'arm' || architecture == 'armlb') {
2541+
} else if (architecture == 'arm') {
25382542
if (os != 'Windows_NT') {
25392543
return
25402544
}
2545+
} else if (architecture == 'armlb') {
2546+
// Do not create armlb windows jobs.
2547+
return
25412548
} else if (architecture == 'x86') {
25422549
if (os != "Ubuntu") {
25432550
return

0 commit comments

Comments
 (0)