summaryrefslogtreecommitdiff
path: root/scripts/jobs/validate/test
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/jobs/validate/test')
-rwxr-xr-xscripts/jobs/validate/test7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/jobs/validate/test b/scripts/jobs/validate/test
index dd36c5db18..9938319dd8 100755
--- a/scripts/jobs/validate/test
+++ b/scripts/jobs/validate/test
@@ -4,6 +4,9 @@ baseDir=${WORKSPACE-`pwd`}
scriptsDir="$baseDir/scripts"
. $scriptsDir/common
+generateRepositoriesConfig $prRepoUrl
+SBT="$SBT_CMD -Dsbt.override.build.repos=true -Dsbt.repository.config=$sbtRepositoryConfig"
+
case $prDryRun in
yep)
@@ -15,12 +18,12 @@ case $prDryRun in
# build quick using STARR built upstream, as specified by scalaVersion
# (in that sense it's locker, since it was built with starr by that upstream job);
# and run JUnit tests, partest, OSGi tests, MiMa and scaladoc
- $SBT_CMD \
+ $SBT \
-Dstarr.version=$scalaVersion \
--warn \
"setupValidateTest $prRepoUrl" \
$testExtraArgs \
- testAll
+ testAll | grep -v "was too long to be displayed in the webview, and will be left out"
;;