summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-12-20 20:30:14 -0800
committerBruce Forstall <brucefo@microsoft.com>2017-12-20 20:30:14 -0800
commit81460a4955c6cab6ac7ad62f065b589a3c67be94 (patch)
tree61f2bfaeb87a8c6901e21412fc2e10b105f4ffba /netci.groovy
parent8431239c35e118ab7733f16c07bc27c1f7ab0348 (diff)
downloadcoreclr-81460a4955c6cab6ac7ad62f065b589a3c67be94.tar.gz
coreclr-81460a4955c6cab6ac7ad62f065b589a3c67be94.tar.bz2
coreclr-81460a4955c6cab6ac7ad62f065b589a3c67be94.zip
Fix build-only test priority
Build-only jobs used to create non-Windows test assets were changed undesirably to build only pri-0 tests. Addresses #15569
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index fa1e38bd64..d61ebe7799 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1460,7 +1460,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
def lowerConfiguration = configuration.toLowerCase()
def priority = '1'
- if ((scenario == 'default' && isPR == true) || (scenario == 'default' && isBuildOnly == true)) {
+ if (scenario == 'default' && isPR == true) {
priority = '0'
}