summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorRuss Keldorph <Russ.Keldorph@microsoft.com>2016-06-16 15:29:19 -0700
committerRuss Keldorph <Russ.Keldorph@microsoft.com>2016-06-16 15:46:22 -0700
commit9360831fb2acfc6f13023b4e8c084f2c956bf34e (patch)
treed9e497ec2a9fe824e5e15c6802ce92cde93b43a8 /netci.groovy
parentd3ab0326868872a0d65d7cd092fcbd4cdf253a72 (diff)
downloadcoreclr-9360831fb2acfc6f13023b4e8c084f2c956bf34e.tar.gz
coreclr-9360831fb2acfc6f13023b4e8c084f2c956bf34e.tar.bz2
coreclr-9360831fb2acfc6f13023b4e8c084f2c956bf34e.zip
Disable GCStress=C periodic triggers for OSX
Fixes #5763
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy18
1 files changed, 15 insertions, 3 deletions
diff --git a/netci.groovy b/netci.groovy
index 81788b212c..a83c1eee1c 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -379,6 +379,12 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
case 'r2r_jitforcerelocs':
case 'gcstress15_pri1r2r':
assert !(os in bidailyCrossList)
+
+ // GCStress=C is currently not supported on OS X
+ if (os == 'OSX' && isGCStressRelatedTesting(scenario)) {
+ break
+ }
+
//GC Stress 15 pri1 r2r gets a push trigger for checked/release
if (configuration == 'Checked' || configuration == 'Release') {
assert (os == 'Windows_NT') || (os in Constants.crossList)
@@ -463,16 +469,22 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
Utilities.addPeriodicTrigger(job, '@daily')
}
break
+ case 'heapverify1':
case 'gcstress0x3':
+ if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
+ assert (os == 'Windows_NT') || (os in Constants.crossList)
+ Utilities.addPeriodicTrigger(job, '@weekly')
+ }
+ break
case 'gcstress0xc':
- case 'heapverify1':
case 'gcstress0xc_zapdisable':
case 'gcstress0xc_zapdisable_jitstress2':
case 'gcstress0xc_zapdisable_heapverify1':
case 'gcstress0xc_jitstress1':
case 'gcstress0xc_jitstress2':
- case 'gcstress0xc_minopts_heapverify1':
- if (os != 'CentOS7.1' && !(os in bidailyCrossList)) {
+ case 'gcstress0xc_minopts_heapverify1':
+ // GCStress=C is currently not supported on OS X
+ if (os != 'CentOS7.1' && os != 'OSX' && !(os in bidailyCrossList)) {
assert (os == 'Windows_NT') || (os in Constants.crossList)
Utilities.addPeriodicTrigger(job, '@weekly')
}