summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <Bruce_Forstall@msn.com>2018-10-02 15:05:54 -0700
committerBruce Forstall <Bruce_Forstall@msn.com>2018-10-02 15:05:54 -0700
commitb31168a4bb56d627792f5f1d85fd5e7ec55a7d0d (patch)
tree92f4c06f4bf39f0049ff20657ec6e6efefbe0a19 /netci.groovy
parentd9bfde1b88bb4d7d0d1bf024a192b13bf7405f82 (diff)
downloadcoreclr-b31168a4bb56d627792f5f1d85fd5e7ec55a7d0d.tar.gz
coreclr-b31168a4bb56d627792f5f1d85fd5e7ec55a7d0d.tar.bz2
coreclr-b31168a4bb56d627792f5f1d85fd5e7ec55a7d0d.zip
Change the innerloop arm64 Linux jobs to be default triggered
The two innerloop jobs had been push triggered, to see how the jobs behave in the system. They have been pretty stable, so change to make them default triggered.
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy29
1 files changed, 0 insertions, 29 deletions
diff --git a/netci.groovy b/netci.groovy
index 28e1e79f8d..300c7ec550 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1318,18 +1318,6 @@ def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def
// Check scenario.
switch (scenario) {
- case 'innerloop':
- case 'no_tiered_compilation_innerloop':
- // TEMPORARY: make arm64 Linux innerloop jobs push jobs, not default triggered jobs, until we have experience
- // with the machines running these jobs (and the jobs themselves), to understand how robust they are.
- // We should never get here (in the "innerloop cases) for non-PR jobs, except for this TEMPORARY exception.
- // Only trigger the flow job, not the build job.
- assert (isInnerloopTestScenario(scenario) && (architecture == 'arm64') && (os == 'Ubuntu16.04') && (configuration == 'Checked'))
- if (isFlowJob) {
- addGithubPushTriggerHelper(job)
- }
- break
-
case 'crossgen_comparison':
if (isFlowJob && os == 'Ubuntu' && architecture == 'arm' && (configuration == 'Checked' || configuration == 'Release')) {
addPeriodicTriggerHelper(job, '@daily')
@@ -1952,11 +1940,6 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
case 'innerloop':
case 'no_tiered_compilation_innerloop':
if (configuration == 'Checked') {
- // TEMPORARY: make arm64 Linux innerloop jobs push jobs, not default triggered jobs, until we have experience
- // with the machines running these jobs (and the jobs themselves), to understand how robust they are.
- if (architecture == 'arm64') {
- break
- }
isDefaultTrigger = true
}
break
@@ -2595,12 +2578,6 @@ def static shouldGenerateJob(def scenario, def isPR, def architecture, def confi
// The various "innerloop" jobs are only available as PR triggered.
if (!isPR) {
- if (isInnerloopTestScenario(scenario) && (architecture == 'arm64') && (os == 'Ubuntu16.04') && (configuration == 'Checked')) {
- // TEMPORARY: make arm64 Linux innerloop jobs push jobs, not default triggered jobs, until we have experience
- // with the machines running these jobs (and the jobs themselves), to understand how robust they are.
- return true
- }
-
if (isInnerloopTestScenario(scenario)) {
return false
}
@@ -3669,12 +3646,6 @@ def static shouldGenerateFlowJob(def scenario, def isPR, def architecture, def c
// The various "innerloop" jobs are only available as PR triggered.
if (!isPR) {
- if (isInnerloopTestScenario(scenario) && (architecture == 'arm64') && (os == 'Ubuntu16.04') && (configuration == 'Checked')) {
- // TEMPORARY: make arm64 Linux innerloop jobs push jobs, not default triggered jobs, until we have experience
- // with the machines running these jobs (and the jobs themselves), to understand how robust they are.
- return true
- }
-
if (isInnerloopTestScenario(scenario)) {
return false
}