summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorKoundinya Veluri <kouvel@users.noreply.github.com>2018-08-23 11:23:31 -0700
committerGitHub <noreply@github.com>2018-08-23 11:23:31 -0700
commita7664abb5eb5ad4c435d11cc3959b1d2667ba811 (patch)
treea332672505f819c6470c9475893fa379bf3c2d60 /netci.groovy
parent4b60b417b8acca5d9fe5e118ebf0b7632a37dc1a (diff)
downloadcoreclr-a7664abb5eb5ad4c435d11cc3959b1d2667ba811.tar.gz
coreclr-a7664abb5eb5ad4c435d11cc3959b1d2667ba811.tar.bz2
coreclr-a7664abb5eb5ad4c435d11cc3959b1d2667ba811.zip
Fix terminology in netci file (#19608)
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy14
1 files changed, 7 insertions, 7 deletions
diff --git a/netci.groovy b/netci.groovy
index 8fc1fe5590..89b9f6a290 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -912,9 +912,9 @@ def static isValidPrTriggeredInnerLoopJob(os, architecture, configuration, isBui
return false
}
-// This means the job builds and runs the 'Pri0' test set. This does not mean the job is
+// This means the job builds and runs the 'innerloop' test set. This does not mean the job is
// scheduled with a default PR trigger despite the correlation being true at the moment.
-def static isPri0TestScenario(def scenario) {
+def static isInnerloopTestScenario(def scenario) {
return (scenario == 'innerloop' || scenario == 'no_tiered_compilation_innerloop')
}
@@ -941,7 +941,7 @@ def static setJobTimeout(newJob, isPR, architecture, configuration, scenario, is
// 2 hours (120 minutes) is the default timeout
def timeout = 120
- if (!isPri0TestScenario(scenario)) {
+ if (!isInnerloopTestScenario(scenario)) {
// Pri-1 test builds take a long time (see calculateBuildCommands()). So up the Pri-1 build jobs timeout.
timeout = 240
}
@@ -2083,7 +2083,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
def lowerConfiguration = configuration.toLowerCase()
def priority = '1'
- if (isPri0TestScenario(scenario)) {
+ if (isInnerloopTestScenario(scenario)) {
priority = '0'
}
@@ -3090,7 +3090,7 @@ def static CreateWindowsArmTestJob(def dslFactory, def project, def architecture
addArchSpecificExclude(architecture, excludeTag)
}
- if (isPri0TestScenario(scenario)) {
+ if (isInnerloopTestScenario(scenario)) {
addExclude("pri1")
}
@@ -3783,7 +3783,7 @@ Constants.allScenarios.each { scenario ->
// Figure out the job name of the CoreCLR build the test will depend on.
- def inputCoreCLRBuildScenario = isPri0TestScenario(scenario) ? 'innerloop' : 'normal'
+ def inputCoreCLRBuildScenario = isInnerloopTestScenario(scenario) ? 'innerloop' : 'normal'
def inputCoreCLRBuildIsBuildOnly = false
if (doCoreFxTesting) {
// Every CoreFx test depends on its own unique build.
@@ -3810,7 +3810,7 @@ Constants.allScenarios.each { scenario ->
def inputTestsBuildName = null
if (!windowsArmJob && !doCoreFxTesting & !doCrossGenComparison) {
- def testBuildScenario = isPri0TestScenario(scenario) ? 'innerloop' : 'normal'
+ def testBuildScenario = isInnerloopTestScenario(scenario) ? 'innerloop' : 'normal'
def inputTestsBuildArch = architecture
if (architecture == "arm64") {