summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-12-05 16:26:22 -0800
committerBruce Forstall <brucefo@microsoft.com>2017-12-05 16:26:22 -0800
commit58352679cbb2e6688447ec4a7df1b2a5fb1b6dbc (patch)
tree223394b995b3813bee5d5c5a6d81d6e00f0d0f85 /netci.groovy
parent2b9e70f5d2ffb482408f572630b5ed5adbd4accb (diff)
downloadcoreclr-58352679cbb2e6688447ec4a7df1b2a5fb1b6dbc.tar.gz
coreclr-58352679cbb2e6688447ec4a7df1b2a5fb1b6dbc.tar.bz2
coreclr-58352679cbb2e6688447ec4a7df1b2a5fb1b6dbc.zip
Enable arm/armlb/arm64 periodic GCStress=C jobs
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy6
1 files changed, 4 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index 453e33069e..a14ca874dd 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -839,8 +839,10 @@ def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def
if (os != 'CentOS7.1' && os != 'OSX10.12' && !(os in bidailyCrossList)) {
assert (os == 'Windows_NT') || (os in Constants.crossList)
if ((architecture == 'arm64') || (architecture == 'arm') || (architecture == 'armlb')) {
- // TODO: Enable a periodic trigger after tests are updated.
- // Utilities.addPeriodicTrigger(job, '@daily')
+ if (os == 'Windows_NT') {
+ // We don't have enough ARM64 machines to run these more frequently than weekly.
+ Utilities.addPeriodicTrigger(job, '@weekly')
+ }
// TODO: Add once external email sending is available again
// addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
}