summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorJarret Shook <jashoo@microsoft.com>2018-03-26 08:52:11 -0700
committerGitHub <noreply@github.com>2018-03-26 08:52:11 -0700
commitb5f4d2df2e087401f2c3aab2c37021e326707915 (patch)
tree5e8d88603dc8f3632285ad1994480d0c4b41bb9b /netci.groovy
parent8e059757627d8c2594524c17d4e3ce8c716afc66 (diff)
parent6be32b2679aac32eae2299905506c119e4b65aca (diff)
downloadcoreclr-b5f4d2df2e087401f2c3aab2c37021e326707915.tar.gz
coreclr-b5f4d2df2e087401f2c3aab2c37021e326707915.tar.bz2
coreclr-b5f4d2df2e087401f2c3aab2c37021e326707915.zip
Merge pull request #17151 from jashook/disable_armlb_windows_jobs
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 61c4ee3c97..886b4624f7 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1535,6 +1535,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
@@ -2256,9 +2261,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')) {
@@ -2539,10 +2543,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