Author: donaldp
Date: Sun Sep 23 01:43:38 2012
New Revision: 1388946
URL: http://svn.apache.org/viewvc?rev=1388946&view=rev
Log:
Add a script in an attempt to simplify management of the ci jobs by importing
it into the source tree
Added:
buildr/trunk/ci.sh
Added: buildr/trunk/ci.sh
URL: http://svn.apache.org/viewvc/buildr/trunk/ci.sh?rev=1388946&view=auto
==============================================================================
--- buildr/trunk/ci.sh (added)
+++ buildr/trunk/ci.sh Sun Sep 23 01:43:38 2012
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+export JAVA_HOME=/home/hudson/tools/java/latest1.6-64 ;
+export SCALA_HOME=/home/hudson/tools/scala-2.9.0.1 ;
+
+source .rvmrc
+
+if [ "X$JOB_NAME" == "XBuildr-ci-build" ]; then
+ rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec rake ci --trace 2>&1
+fi
+