summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorKyungwoo Lee <kyulee@microsoft.com>2016-07-07 14:45:02 -0700
committerKyungwoo Lee <kyulee@microsoft.com>2016-07-07 14:45:02 -0700
commit81003fbf84cd8882a63e29a15d381ecab375fbc0 (patch)
treeeef4fd2b17c311f76f83cbc7dd87fa882a4d353b /netci.groovy
parentb567823b332c347ebfc7bf5726df16dc6c38690a (diff)
downloadcoreclr-81003fbf84cd8882a63e29a15d381ecab375fbc0.tar.gz
coreclr-81003fbf84cd8882a63e29a15d381ecab375fbc0.tar.bz2
coreclr-81003fbf84cd8882a63e29a15d381ecab375fbc0.zip
ARM64: Enable Daily Job for GcStress0x3
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy9
1 files changed, 8 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index 3647dca6c7..2bbd1f08c8 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -493,7 +493,14 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
case 'gcstress0x3':
if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
assert (os == 'Windows_NT') || (os in Constants.crossList)
- Utilities.addPeriodicTrigger(job, '@weekly')
+ if (architecture == 'arm64') {
+ assert (os == 'Windows_NT')
+ Utilities.addPeriodicTrigger(job, '@daily')
+ addEmailPublisher(job, 'dotnetonarm64@microsoft.com')
+ }
+ else {
+ Utilities.addPeriodicTrigger(job, '@weekly')
+ }
}
break
case 'gcstress0xc':