aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/bamboo.build
diff options
context:
space:
mode:
authorJeff Ames2008-05-06 22:14:15 +0000
committerJeff Ames2008-05-06 22:14:15 +0000
commitbe024e1e938e8d4ebe8844e5814da5f69895fa40 (patch)
treee04e15c2fdc9acb82d44f2d884a63d7e2f729e67 /.nant/bamboo.build
parentthis should fix zariok's issue (diff)
downloadopensim-SC_OLD-be024e1e938e8d4ebe8844e5814da5f69895fa40.zip
opensim-SC_OLD-be024e1e938e8d4ebe8844e5814da5f69895fa40.tar.gz
opensim-SC_OLD-be024e1e938e8d4ebe8844e5814da5f69895fa40.tar.bz2
opensim-SC_OLD-be024e1e938e8d4ebe8844e5814da5f69895fa40.tar.xz
Restored svn:keywords to prebuild.xml.
Set svn properties script to ignore this property from now on. Update svn properties on some other file types. Minor formatting cleanup.
Diffstat (limited to '')
-rw-r--r--.nant/bamboo.build88
1 files changed, 44 insertions, 44 deletions
diff --git a/.nant/bamboo.build b/.nant/bamboo.build
index e39200d..c25110b 100644
--- a/.nant/bamboo.build
+++ b/.nant/bamboo.build
@@ -1,48 +1,48 @@
1<?xml version="1.0" ?> 1<?xml version="1.0" ?>
2<project name="OpenSim" default="build"> 2<project name="OpenSim" default="build">
3 <target name="build"> 3 <target name="build">
4 <exec program="mono" commandline="../bin/Prebuild.exe /target nant" /> 4 <exec program="mono" commandline="../bin/Prebuild.exe /target nant" />
5 <nant buildfile="../OpenSim.build" target="build" /> 5 <nant buildfile="../OpenSim.build" target="build" />
6 </target> 6 </target>
7 <target name="cibuild"> 7 <target name="cibuild">
8 <property name="projectdir" value="opensim-0.5.5" /> 8 <property name="projectdir" value="opensim-0.5.5" />
9 <exec program="mono" commandline="bin/Prebuild.exe /target nant" workingdir="../" /> 9 <exec program="mono" commandline="bin/Prebuild.exe /target nant" workingdir="../" />
10 <nant buildfile="../OpenSim.build" target="build" /> 10 <nant buildfile="../OpenSim.build" target="build" />
11 11
12 <delete dir="../${projectdir}" /> 12 <delete dir="../${projectdir}" />
13 <copy todir="../${projectdir}"> 13 <copy todir="../${projectdir}">
14 <fileset basedir="../"> 14 <fileset basedir="../">
15 <include name="ThirdPartyLicenses/**" /> 15 <include name="ThirdPartyLicenses/**" />
16 <include name="CONTRIBUTORS.txt" /> 16 <include name="CONTRIBUTORS.txt" />
17 <include name="README" /> 17 <include name="README" />
18 <include name="bin/**" /> 18 <include name="bin/**" />
19 </fileset> 19 </fileset>
20 </copy> 20 </copy>
21 21
22 <touch file="../${projectdir}/bin/startup_commands.txt" /> 22 <touch file="../${projectdir}/bin/startup_commands.txt" />
23 23
24 <mkdir dir="../test-results" /> 24 <mkdir dir="../test-results" />
25 <nunit2> 25 <nunit2>
26 <formatter type="Xml" usefile="true" extension=".xml" outputdir="../test-results" /> 26 <formatter type="Xml" usefile="true" extension=".xml" outputdir="../test-results" />
27 <test> 27 <test>
28 <assemblies> 28 <assemblies>
29 <include name="../bin/OpenSim*.dll" /> 29 <include name="../bin/OpenSim*.dll" />
30 </assemblies> 30 </assemblies>
31 </test> 31 </test>
32 </nunit2> 32 </nunit2>
33 33
34 <zip zipfile="../${projectdir}.zip"> 34 <zip zipfile="../${projectdir}.zip">
35 <fileset basedir="${projectdir}/"> 35 <fileset basedir="${projectdir}/">
36 <include name="**" /> 36 <include name="**" />
37 </fileset> 37 </fileset>
38 </zip> 38 </zip>
39 <tar destfile="../${projectdir}.tar.gz" compression="GZip"> 39 <tar destfile="../${projectdir}.tar.gz" compression="GZip">
40 <fileset basedir="${projectdir}/"> 40 <fileset basedir="${projectdir}/">
41 <include name="**" /> 41 <include name="**" />
42 </fileset> 42 </fileset>
43 </tar> 43 </tar>
44 44
45 <copy file="../${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" /> 45 <copy file="../${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" />
46 <copy file="../${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" /> 46 <copy file="../${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" />
47 </target> 47 </target>
48</project> \ No newline at end of file 48</project>