aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/bamboo.build
blob: e39200db99b4e47ca20a210110bd0d48c06a1028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?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" workingdir="../" />
	        <nant buildfile="../OpenSim.build" target="build" />

		   <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" />

		   <mkdir dir="../test-results" />
		   <nunit2>
				<formatter type="Xml" usefile="true" extension=".xml" outputdir="../test-results" />
			    <test>
			        <assemblies>
			            <include name="../bin/OpenSim*.dll" />
			        </assemblies>
			    </test>
			</nunit2>
		   
			<zip zipfile="../${projectdir}.zip">
			<fileset basedir="${projectdir}/">
				<include name="**" />
			</fileset>
			</zip>
			<tar destfile="../${projectdir}.tar.gz" compression="GZip">
			<fileset basedir="${projectdir}/">
				<include name="**" />
			</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>
</project>