* Committing improved bamboo.build

* Incremented OpenSim version counter to 0.5.5 (from 0.4)
0.6.0-stable
Adam Frisby 2008-04-23 07:00:07 +00:00
parent f221378219
commit e11978d209
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<property name="projectdir" value="opensim-0.4" />
<property name="projectdir" value="opensim-0.5.5" />
<target name="distdir">
<delete dir="${projectdir}" />

View File

@ -1,8 +1,14 @@
<?xml version="1.0" ?>
<project name="OpenSim" default="build">
<target name="build">
<exec program="mono" commandline="bin/Prebuild.exe /target nant" />
<nant buildfile="OpenSim.build" target="build" />
</target>
<target name="cibuild">
<exec program="mono" commandline="bin/Prebuild.exe /target nant" />
<nant buildfile="OpenSim.build" target="build" />
<nant buildfile="OpenSim.build" target="dist" />
<copy file="${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" />
<copy file="${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" />
</target>
</project>