summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2018-03-23 09:33:57 -0700
committerjashook <jashoo@microsoft.com>2018-03-23 09:33:57 -0700
commit6be32b2679aac32eae2299905506c119e4b65aca (patch)
tree2a2d298dd4cbe1faa1073733e1cbd6ee94545aca /netci.groovy
parent1ee83de5d83eec5362b4e335a326bfe816afa3a1 (diff)
downloadcoreclr-6be32b2679aac32eae2299905506c119e4b65aca.tar.gz
coreclr-6be32b2679aac32eae2299905506c119e4b65aca.tar.bz2
coreclr-6be32b2679aac32eae2299905506c119e4b65aca.zip
Disable armlb windows jobs
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy15
1 files changed, 11 insertions, 4 deletions
diff --git a/netci.groovy b/netci.groovy
index 6b45ff7014..b8aff27309 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1530,6 +1530,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
break
case 'Windows_NT':
+ if (architecture == "armlb") {
+ // Disable armlb windows jobs
+ break
+ }
+
// Triggers on the non-flow jobs aren't necessary here
if (!isFlowJob) {
break
@@ -2251,9 +2256,8 @@ Constants.allScenarios.each { scenario ->
}
break
case 'armlb':
- if (os != 'Windows_NT') {
- return
- }
+ // Do not create armlb jobs
+ return
break
case 'x86':
if ((os != 'Ubuntu') && (os != 'Windows_NT')) {
@@ -2534,10 +2538,13 @@ Constants.allScenarios.each { scenario ->
if (os != "Ubuntu" && os != "Windows_NT") {
return
}
- } else if (architecture == 'arm' || architecture == 'armlb') {
+ } else if (architecture == 'arm') {
if (os != 'Windows_NT') {
return
}
+ } else if (architecture == 'armlb') {
+ // Do not create armlb windows jobs.
+ return
} else if (architecture == 'x86') {
if (os != "Ubuntu") {
return