summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-11-30 13:58:08 -0800
committerBruce Forstall <brucefo@microsoft.com>2017-11-30 13:58:08 -0800
commit9a2565863f424dc9ee3322ad87befdbf1d71b93a (patch)
tree4391a3d87c87c90f3e747a600612e7a1f4bb5c57 /netci.groovy
parent37d85caaa0868bff3c7f3fd6cf8ca52cda318816 (diff)
downloadcoreclr-9a2565863f424dc9ee3322ad87befdbf1d71b93a.tar.gz
coreclr-9a2565863f424dc9ee3322ad87befdbf1d71b93a.tar.bz2
coreclr-9a2565863f424dc9ee3322ad87befdbf1d71b93a.zip
Don't add triggers for arm/armlb/arm64 non-flow jobs
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy16
1 files changed, 12 insertions, 4 deletions
diff --git a/netci.groovy b/netci.groovy
index 1acb5d2e80..68d9a2ef65 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1166,6 +1166,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
}
break
case 'Windows_NT':
+ // Triggers on the non-flow jobs aren't necessary here
+ if (!isFlowJob) {
+ break
+ }
+
// Set up a private trigger
def contextString = "${os} ${architecture} Cross ${configuration}"
def triggerString = "(?i).*test\\W+${os}\\W+${architecture}\\W+Cross\\W+${configuration}"
@@ -1262,6 +1267,11 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
}
break
case 'Windows_NT':
+ // Triggers on the non-flow jobs aren't necessary here
+ if (!isFlowJob) {
+ break
+ }
+
assert isArmWindowsScenario(scenario)
switch (scenario) {
case 'default':
@@ -1828,8 +1838,6 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
return buildCommands
}
-// Additional scenario which can alter behavior
-
Constants.allScenarios.each { scenario ->
[true, false].each { isPR ->
Constants.architectureList.each { architecture ->
@@ -2059,7 +2067,7 @@ Constants.allScenarios.each { scenario ->
// Add all the standard options
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
- addTriggers(newJob, branch, isPR, architecture, os, configuration, scenario, false, isBuildOnly)
+ addTriggers(newJob, branch, isPR, architecture, os, configuration, scenario, false, isBuildOnly) // isFlowJob==false
def buildCommands = calculateBuildCommands(newJob, scenario, branch, isPR, architecture, configuration, os, isBuildOnly)
def osGroup = getOSGroup(os)
@@ -2741,7 +2749,7 @@ build(params + [CORECLR_BUILD: coreclrBuildJob.build.number,
setMachineAffinity(newFlowJob, os, flowArch, affinityOptions)
Utilities.standardJobSetup(newFlowJob, project, isPR, "*/${branch}")
- addTriggers(newFlowJob, branch, isPR, architecture, os, configuration, scenario, true, false)
+ addTriggers(newFlowJob, branch, isPR, architecture, os, configuration, scenario, true, false) // isFlowJob==true, isWindowsBuildOnlyJob==false
} // configuration
} // os
} // architecture