* Once more into the breach, yada yada.
parent
82e792217d
commit
126cc80cf8
25
bamboo.build
25
bamboo.build
|
@ -8,7 +8,30 @@
|
|||
<property name="projectdir" value="opensim-0.5.5" />
|
||||
<exec program="mono" commandline="bin/Prebuild.exe /target nant" />
|
||||
<nant buildfile="OpenSim.build" target="build" />
|
||||
<nant buildfile="OpenSim.build" target="dist" />
|
||||
|
||||
<delete dir="${projectdir}" />
|
||||
<copy todir="${projectdir}">
|
||||
<fileset basedir=".">
|
||||
<include name="ThirdPartyLicenses/**" />
|
||||
<include name="CONTRIBUTORS.txt" />
|
||||
<include name="README" />
|
||||
<include name="bin/**" />
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<touch file="${projectdir}/bin/startup_commands.txt" />
|
||||
|
||||
<zip zipfile="${projectdir}.zip">
|
||||
<fileset basedir=".">
|
||||
<include name="${projectdir}/**" />
|
||||
</fileset>
|
||||
</zip>
|
||||
<tar destfile="${projectdir}.tar.gz" compression="GZip">
|
||||
<fileset basedir=".">
|
||||
<include name="${projectdir}/**" />
|
||||
</fileset>
|
||||
</tar>
|
||||
|
||||
<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>
|
||||
|
|
Loading…
Reference in New Issue