From b31168a4bb56d627792f5f1d85fd5e7ec55a7d0d Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Tue, 2 Oct 2018 15:05:54 -0700 Subject: [PATCH] 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. --- netci.groovy | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/netci.groovy b/netci.groovy index 28e1e79..300c7ec 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 } -- 2.7.4