aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bamboo.build
blob: f8eb3718b483759a8cfd8fcbc8ceed9281fc7065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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">
			<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" />
			<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>