summaryrefslogtreecommitdiff
path: root/scripts/jobs/validate/test
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2015-01-09 15:58:47 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2015-01-21 19:26:52 -0800
commit9b86cdfe9bc97861746f4e90a0383761585a2f80 (patch)
tree1e9a6b457099adc013ceaeffe18736ea3c013f73 /scripts/jobs/validate/test
parent51e77037f2adc4ffa7421aa36803a5874292b70d (diff)
downloadscala-9b86cdfe9bc97861746f4e90a0383761585a2f80.tar.gz
scala-9b86cdfe9bc97861746f4e90a0383761585a2f80.tar.bz2
scala-9b86cdfe9bc97861746f4e90a0383761585a2f80.zip
New PR validation
Diffstat (limited to 'scripts/jobs/validate/test')
-rwxr-xr-xscripts/jobs/validate/test17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/jobs/validate/test b/scripts/jobs/validate/test
new file mode 100755
index 0000000000..c1c02c80cb
--- /dev/null
+++ b/scripts/jobs/validate/test
@@ -0,0 +1,17 @@
+#!/bin/bash -e
+
+case $prDryRun in
+ yep)
+ echo "DRY RUN"
+ ;;
+ *)
+ ./pull-binary-libs.sh
+
+ # 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)
+ ant -Dstarr.version=$scalaVersion \
+ -Dscalac.args.optimise=-optimise \
+ -Dlocker.skip=1 -Dstarr.use.released=1 -Dextra.repo.url=$prRepoUrl \
+ $testExtraArgs ${testTarget-test.core docs.done}
+ ;;
+esac \ No newline at end of file