From 706d68f863ebffb0f63811afe0835c5f975ba225 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Mon, 2 Feb 2015 22:59:15 -0800 Subject: New CI validation scripts Currently not validating the IDE, pending fix for https://github.com/scala-ide/uber-build/issues/48. The new infrastructure is documented over at: - https://github.com/scala/scabot - https://github.com/scala/scala-jenkins-infra - [jenkins jobs definitions](https://github.com/scala/scala-jenkins-infra/tree/master/templates/default/jobs/validate) --- scripts/jobs/validate/test | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 scripts/jobs/validate/test (limited to 'scripts/jobs/validate/test') 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 -- cgit v1.2.3