* Updated filesystem refs for bamboo.build

0.6.0-stable
Adam Frisby 2008-04-23 08:42:15 +00:00
parent 3bed13f76f
commit 2eb542dc59
1 changed files with 14 additions and 14 deletions

View File

@ -1,17 +1,17 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<project name="OpenSim" default="build"> <project name="OpenSim" default="build">
<target name="build"> <target name="build">
<exec program="mono" commandline="bin/Prebuild.exe /target nant" /> <exec program="mono" commandline="../bin/Prebuild.exe /target nant" />
<nant buildfile="OpenSim.build" target="build" /> <nant buildfile="../OpenSim.build" target="build" />
</target> </target>
<target name="cibuild"> <target name="cibuild">
<property name="projectdir" value="opensim-0.5.5" /> <property name="projectdir" value="opensim-0.5.5" />
<exec program="mono" commandline="bin/Prebuild.exe /target nant" /> <exec program="mono" commandline="../bin/Prebuild.exe /target nant" />
<nant buildfile="OpenSim.build" target="build" /> <nant buildfile="../OpenSim.build" target="build" />
<delete dir="${projectdir}" /> <delete dir="../${projectdir}" />
<copy todir="${projectdir}"> <copy todir="../${projectdir}">
<fileset basedir="."> <fileset basedir="../">
<include name="ThirdPartyLicenses/**" /> <include name="ThirdPartyLicenses/**" />
<include name="CONTRIBUTORS.txt" /> <include name="CONTRIBUTORS.txt" />
<include name="README" /> <include name="README" />
@ -19,20 +19,20 @@
</fileset> </fileset>
</copy> </copy>
<touch file="${projectdir}/bin/startup_commands.txt" /> <touch file="../${projectdir}/bin/startup_commands.txt" />
<zip zipfile="${projectdir}.zip"> <zip zipfile="../${projectdir}.zip">
<fileset basedir="."> <fileset basedir="../">
<include name="${projectdir}/**" /> <include name="${projectdir}/**" />
</fileset> </fileset>
</zip> </zip>
<tar destfile="${projectdir}.tar.gz" compression="GZip"> <tar destfile="../${projectdir}.tar.gz" compression="GZip">
<fileset basedir="."> <fileset basedir="../">
<include name="${projectdir}/**" /> <include name="${projectdir}/**" />
</fileset> </fileset>
</tar> </tar>
<copy file="${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" /> <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" /> <copy file="../${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" />
</target> </target>
</project> </project>