summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorKyungwoo Lee <kyulee@microsoft.com>2016-06-30 15:00:07 -0700
committerKyungwoo Lee <kyulee@microsoft.com>2016-06-30 15:00:07 -0700
commit1e142344d7b67c7cce3d1d1346223b630f84496f (patch)
treee8c7f69da2602c46e02adae9d3315af13707e0b2 /netci.groovy
parent9ceb6b6c4f1fd9d76a3d986750049bbed5bd0af8 (diff)
downloadcoreclr-1e142344d7b67c7cce3d1d1346223b630f84496f.tar.gz
coreclr-1e142344d7b67c7cce3d1d1346223b630f84496f.tar.bz2
coreclr-1e142344d7b67c7cce3d1d1346223b630f84496f.zip
ARM64: Enable GCStress0x3 Private Job
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy7
1 files changed, 4 insertions, 3 deletions
diff --git a/netci.groovy b/netci.groovy
index 37cb09b1fc..4d99f067f4 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1068,7 +1068,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
}
break
case 'arm64':
- assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0xc')
+ assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc')
// Set up a private trigger
def contextString = "${os} ${architecture} Cross ${configuration}"
@@ -1089,6 +1089,7 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}", null, arm64Users)
break
case 'pri1r2r':
+ case 'gcstress0x3':
case 'gcstress0xc':
Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString,
"(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}\\W+${scenario}", null, arm64Users)
@@ -1325,7 +1326,7 @@ combinedScenarios.each { scenario ->
switch (architecture) {
case 'arm64':
- if (scenario != 'gcstress0xc') {
+ if ((scenario != 'gcstress0x3') && (scenario != 'gcstress0xc')) {
return
}
break
@@ -1649,7 +1650,7 @@ combinedScenarios.each { scenario ->
break
case 'arm64':
- assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0xc')
+ assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc')
// Set time out
setTestJobTimeOut(newJob, scenario)