You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/09/23 21:19:23 UTC

svn commit: r1389127 - /buildr/trunk/ci.sh

Author: donaldp
Date: Sun Sep 23 19:19:22 2012
New Revision: 1389127

URL: http://svn.apache.org/viewvc?rev=1389127&view=rev
Log:
Add ci task for website building

Modified:
    buildr/trunk/ci.sh

Modified: buildr/trunk/ci.sh
URL: http://svn.apache.org/viewvc/buildr/trunk/ci.sh?rev=1389127&r1=1389126&r2=1389127&view=diff
==============================================================================
--- buildr/trunk/ci.sh (original)
+++ buildr/trunk/ci.sh Sun Sep 23 19:19:22 2012
@@ -36,6 +36,12 @@ elif [ "X$JOB_NAME" == "XBuildr-metrics-
   export JAVA_HOME=/home/hudson/tools/java/latest1.6-64 ;
   source .rvmrc
   rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec rake coverage metrics --trace 2>&1
+elif [ "X$JOB_NAME" == "XBuildr-website-build" ]; then
+  export BUILDR_RUBY_VERSION=ruby-1.9.2-p320
+  export JAVA_HOME=/home/hudson/tools/java/latest1.6-64 ;
+  export PATH=$PATH:/home/toulmean/prince/bin
+  source .rvmrc
+  rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec rake jekyll --trace 2>&1
 else
   echo "Unknown build job"
   exit 42