diff options
author | Sean Dague | 2009-04-22 12:23:00 +0000 |
---|---|---|
committer | Sean Dague | 2009-04-22 12:23:00 +0000 |
commit | d35c86928d903983dbcb8c691a478e1bb0fa833a (patch) | |
tree | 4f3955d6960a59f9e54c8ed379961bc99c804617 /.nant | |
parent | fix line endings on new files (diff) | |
download | opensim-SC_OLD-d35c86928d903983dbcb8c691a478e1bb0fa833a.zip opensim-SC_OLD-d35c86928d903983dbcb8c691a478e1bb0fa833a.tar.gz opensim-SC_OLD-d35c86928d903983dbcb8c691a478e1bb0fa833a.tar.bz2 opensim-SC_OLD-d35c86928d903983dbcb8c691a478e1bb0fa833a.tar.xz |
remove the bamboo build file, bamboo is dead, long live panda :)
Diffstat (limited to '')
-rw-r--r-- | .nant/bamboo.build | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/.nant/bamboo.build b/.nant/bamboo.build deleted file mode 100644 index 3280dd0..0000000 --- a/.nant/bamboo.build +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | <?xml version="1.0" ?> | ||
2 | <project name="OpenSim" default="build"> | ||
3 | <setenv name="MONO_THREADS_PER_CPU" value="100" /> | ||
4 | <target name="build"> | ||
5 | <exec program="mono" commandline="../bin/Prebuild.exe /target nant" /> | ||
6 | <nant buildfile="../OpenSim.build" target="build" /> | ||
7 | </target> | ||
8 | <target name="cibuild"> | ||
9 | <property name="projectdir" value="opensim-0.6.4" /> | ||
10 | <exec program="mono" commandline="bin/Prebuild.exe /target nant" workingdir="../" /> | ||
11 | <nant buildfile="../OpenSim.build" target="clean" /> | ||
12 | <nant buildfile="../OpenSim.build" target="build" /> | ||
13 | |||
14 | <delete dir="../${projectdir}" /> | ||
15 | <copy todir="../${projectdir}"> | ||
16 | <fileset basedir="../"> | ||
17 | <include name="ThirdPartyLicenses/**" /> | ||
18 | <include name="CONTRIBUTORS.txt" /> | ||
19 | <include name="README" /> | ||
20 | <include name="bin/**" /> | ||
21 | </fileset> | ||
22 | </copy> | ||
23 | |||
24 | <exec program="svn" commandline="info" workingdir="../" output="../${projectdir}/svn.info" /> | ||
25 | <touch file="../${projectdir}/bin/startup_commands.txt" /> | ||
26 | |||
27 | <!-- Re-create the directory containig test results. --> | ||
28 | <delete dir="../test-results" /> | ||
29 | <mkdir dir="../test-results" /> | ||
30 | |||
31 | <!-- Copy the 64 bit ode library to bin/ for testing. --> | ||
32 | <copy file="../bin/Physics/OpenSim.Region.Physics.OdePlugin.dll" tofile="../bin/OpenSim.Region.Physics.OdePlugin.dll" /> | ||
33 | |||
34 | |||
35 | <!-- Run the tests. --> | ||
36 | <nunit2 failonerror="false" verbose="true"> | ||
37 | <formatter type="Xml" usefile="true" extension=".xml" outputdir="../test-results" /> | ||
38 | <test> | ||
39 | <assemblies> | ||
40 | <include name="../bin/OpenSim.Framework.Tests.dll"/> | ||
41 | <include name="../bin/OpenSim.Framework.Communications.Tests.dll"/> | ||
42 | <include name="../bin/OpenSim.Framework.Servers.Tests.dll"/> | ||
43 | <include name="../bin/OpenSim.Region.ScriptEngine.Tests.dll"/> | ||
44 | <include name="../bin/OpenSim.Region.CoreModules.Tests.dll"/> | ||
45 | <include name="../bin/OpenSim.Region.Framework.Tests.dll"/> | ||
46 | <include name="../bin/OpenSim.Data.SQLite.Tests.dll"/> | ||
47 | <include name="../bin/OpenSim.Data.MySQL.Tests.dll"/> | ||
48 | <!-- <include name="../bin/OpenSim.Region.Physics.OdePlugin.dll"/> --> | ||
49 | |||
50 | |||
51 | </assemblies> | ||
52 | </test> | ||
53 | </nunit2> | ||
54 | |||
55 | <!-- | ||
56 | <echo message="Generating Doxygen documentation" /> | ||
57 | <exec program="doxygen" workingdir="../doc" commandline="doxygen.conf" /> | ||
58 | <exec program="rsync" workingdir="../doc" commandline="-az - - delete html/ /home/afrisby/public_html/docs/html/" /> | ||
59 | --> | ||
60 | <!-- ensure a clean checkout each time --> | ||
61 | </target> | ||
62 | </project> | ||