summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-11-01 15:42:44 -0700
committerBruce Forstall <brucefo@microsoft.com>2017-11-01 15:42:44 -0700
commitdc0bcc4b31e393aa5d87c1e42135a0635e5bb181 (patch)
tree3b954e4f446030caac3c197463886ac25a4865b5 /netci.groovy
parent49d60b5e71bba4a7014ccf35f792906564d21dfc (diff)
downloadcoreclr-dc0bcc4b31e393aa5d87c1e42135a0635e5bb181.tar.gz
coreclr-dc0bcc4b31e393aa5d87c1e42135a0635e5bb181.tar.bz2
coreclr-dc0bcc4b31e393aa5d87c1e42135a0635e5bb181.zip
Enable periodic triggers for x86_arm_altjit and x64_arm64_altjit jobs
These jobs are getting clean enough where having them regularly run will be valuable.
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy11
1 files changed, 2 insertions, 9 deletions
diff --git a/netci.groovy b/netci.groovy
index f1e00ddb40..061cc6f18b 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -434,15 +434,6 @@ def static getJobName(def configuration, def architecture, def os, def scenario,
def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def os, def configuration, def scenario, def isFlowJob, def isWindowsBuildOnlyJob, def bidailyCrossList) {
- // Only PR triggers for altjit jobs.
- switch (architecture) {
- case 'x86_arm_altjit':
- case 'x64_arm64_altjit':
- return
- default:
- break
- }
-
// Check scenario.
switch (scenario) {
case 'default':
@@ -459,6 +450,8 @@ def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def
break
case 'arm':
case 'armlb':
+ case 'x86_arm_altjit':
+ case 'x64_arm64_altjit':
Utilities.addGithubPushTrigger(job)
break
case 'arm64':