summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-11-20 21:57:21 -0800
committerBruce Forstall <brucefo@microsoft.com>2017-11-20 21:57:21 -0800
commitedde119bb6c84ae76ae5c9e12f86b66c852cc608 (patch)
treee10c8ee1c1955b0321f1afc61a81a26a6892b76c /netci.groovy
parent560dd2954b316f30582334ba4cd86e4ea83fcc3a (diff)
downloadcoreclr-edde119bb6c84ae76ae5c9e12f86b66c852cc608.tar.gz
coreclr-edde119bb6c84ae76ae5c9e12f86b66c852cc608.tar.bz2
coreclr-edde119bb6c84ae76ae5c9e12f86b66c852cc608.zip
Temporary fix for arm/armlb/arm64 builds: always build Pri 1 tests
A fix like #15075 will replace this soon.
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy6
1 files changed, 6 insertions, 0 deletions
diff --git a/netci.groovy b/netci.groovy
index 59c296f864..d31f74cead 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1581,6 +1581,9 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
armCrossgenOpt = '-altjitcrossgen'
}
+ // Hack: build pri1 tests for arm/armlb/arm64 build job, until we have separate pri0 and pri1 builds for the flow job to use.
+ priority = '1'
+
// This is now a build only job. Do not run tests. Use the flow job.
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${buildArchitecture} -priority=${priority} ${armCrossgenOpt}"
@@ -1606,6 +1609,9 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
Utilities.setJobTimeout(newJob, 240)
}
+ // Hack: build pri1 tests for arm/armlb/arm64 build job, until we have separate pri0 and pri1 builds for the flow job to use.
+ priority = '1'
+
// This is now a build only job. Do not run tests. Use the flow job.
buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} toolset_dir C:\\ats2 -priority=${priority}"