summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorSejong Oh <sejooh@microsoft.com>2016-03-10 15:57:09 -0800
committerSejong Oh <sejooh@microsoft.com>2016-03-10 23:56:51 -0800
commit4d9a286c5a465e543bca1733ed2cf1a51e5b13b4 (patch)
tree1095d720a97cc49916e110796a0a76b2fb62b1f3 /netci.groovy
parent2325dea4efa87fc658cb566454e4955f7269ddf6 (diff)
downloadcoreclr-4d9a286c5a465e543bca1733ed2cf1a51e5b13b4.tar.gz
coreclr-4d9a286c5a465e543bca1733ed2cf1a51e5b13b4.tar.bz2
coreclr-4d9a286c5a465e543bca1733ed2cf1a51e5b13b4.zip
a This is a combination of 2 commits.
Increase timeout and crond schedule for GC stress testing
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy11
1 files changed, 8 insertions, 3 deletions
diff --git a/netci.groovy b/netci.groovy
index 83f9c588bd..011e0e0ae4 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -113,7 +113,7 @@ def static isCorefxTesting(def scenario) {
def static setTestJobTimeOut(newJob, scenario) {
if (isGCStressRelatedTesting(scenario)) {
- Utilities.setJobTimeout(newJob, 720)
+ Utilities.setJobTimeout(newJob, 1440)
}
else if (isCorefxTesting(scenario)) {
Utilities.setJobTimeout(newJob, 360)
@@ -301,9 +301,14 @@ def static addTriggers(def job, def isPR, def architecture, def os, def configur
case 'corefx_jitstressregs8':
case 'corefx_jitstressregs0x10':
case 'corefx_jitstressregs0x80':
+ case 'zapdisable':
+ if (os != 'CentOS7.1') {
+ assert (os == 'Windows_NT') || (os in Constants.crossList)
+ Utilities.addPeriodicTrigger(job, '@daily')
+ }
+ break
case 'gcstress0x3':
case 'gcstress0xc':
- case 'zapdisable':
case 'heapverify1':
case 'gcstress0xc_zapdisable':
case 'gcstress0xc_zapdisable_jitstress2':
@@ -313,7 +318,7 @@ def static addTriggers(def job, def isPR, def architecture, def os, def configur
case 'gcstress0xc_minopts_heapverify1':
if (os != 'CentOS7.1') {
assert (os == 'Windows_NT') || (os in Constants.crossList)
- Utilities.addPeriodicTrigger(job, '@daily')
+ Utilities.addPeriodicTrigger(job, '@weekly')
}
break
default: