|
From: Markus B. <mba...@us...> - 2006-04-09 22:39:25
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6444 Modified Files: build-RDT.xml Added Files: build.sh Log Message: added target for 0.8.0 RC in build-RDT.xml, new file build.sh for further automating integration and release builds --- NEW FILE: build.sh --- #!/bin/sh if [ "$1" == "" ]; then echo "call with release or integration build target in build-RDT.xml" ; exit 1 fi #echo "Make sure xvfb is running - otherwise the tests won't run. Start with" Xvfb :1 & export DISPLAY=localhost:1 cmd="ant -f build-RDT.xml $1" logfile=build.$1.log echo Starting build: $cmd, see $logfile $cmd > $logfile Index: build-RDT.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.build/cruiseControl/build-RDT.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build-RDT.xml 20 Jan 2006 01:52:39 -0000 1.3 --- build-RDT.xml 9 Apr 2006 22:39:19 -0000 1.4 *************** *** 60,63 **** --- 60,69 ---- </target> + <target name="0.8.0.RC1"> + <property name="cvsLabel" value="R2006-04-09_0-8-0_RC1"/> + <property name="label" value="0.8.0.604092300RC1"/> + <antcall target="integration"/> + </target> + <target name="0.7.0.RC1"> <property name="cvsLabel" value="R2005-12-22_0-7-0_RC1"/> |