Using CruiseControl for Automating AppFuse Builds
After seeing Mike Clark speak at Denver's JUG earlier this month (download presentation), I became slightly motivated to try and get automated builds running for AppFuse with CruiseControl. It's fairly easy to do with Anthill, so I figured CruiseControl couldn't be too much harder.
After countless hours of trying to get it to work, I give up. I've documented what I did, and where I'm at - but I can no longer afford to spend any time on it. If you're motivated enough, feel free to try and get it working. Suggestions are welcome, but likely won't be acted upon since I'm burned out on CruiseControl.
Posted by kleineikenscheidt/stefan on October 26, 2004 at 07:16 PM MDT #
<cruisecontrol>
<project name="appfuse" buildafterfailed="false">
<bootstrappers>
<currentbuildstatusbootstrapper
file="logs/appfuse/currentbuildstatus.txt"/>
<cvsbootstrapper localWorkingCopy="checkout/appfuse" />
</bootstrappers>
<modificationset quietperiod="15">
<cvs localworkingcopy="checkout/appfuse"/>
</modificationset>
<schedule interval="15">
<ant buildfile="/Users/robert/build/checkout/appfuse/build.xml"
antWorkingDir="/Users/robert/build/checkout/appfuse"
antscript="/usr/bin/ant"
target="clean package-web test-all" />
</schedule>
<log>
<merge dir="checkout/appfuse/build/test/data" />
</log>
<publishers>
<currentbuildstatuspublisher
file="logs/appfuse/currentbuildstatus.txt"/>
</publishers>
</project>
</cruisecontrol>
Posted by robert on October 26, 2004 at 10:51 PM MDT #
Posted by Larry Williams on October 27, 2004 at 07:24 AM MDT #
Posted by Sam Newman on October 28, 2004 at 08:30 AM MDT #
Posted by Paul Kavanagh on October 28, 2004 at 05:24 PM MDT #
Posted by Jared Richardson on October 28, 2004 at 06:04 PM MDT #