diff options
-rw-r--r-- | autobuild.sh | 5 | ||||
-rw-r--r-- | bamboo.build | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/autobuild.sh b/autobuild.sh deleted file mode 100644 index 5c2fd46..0000000 --- a/autobuild.sh +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | mono bin/Prebuild.exe /target nant | ||
3 | perl -pi -e 's{OpenSim.dll}{OpenSim.exe}' OpenSim/ApplicationPlugins/LoadRegions/OpenSim.ApplicationPlugins.LoadRegions.dll.build | ||
4 | nant | ||
5 | |||
diff --git a/bamboo.build b/bamboo.build new file mode 100644 index 0000000..1d540ab --- /dev/null +++ b/bamboo.build | |||
@@ -0,0 +1,8 @@ | |||
1 | <?xml version="1.0" ?> | ||
2 | <project name="OpenSim" default="build"> | ||
3 | <target name="cibuild"> | ||
4 | <exec program="mono" commandline="bin/Prebuild.exe /target nant" /> | ||
5 | <nant buildfile="OpenSim.build" target="build" /> | ||
6 | <nant buildfile="OpenSim.build" target="dist" /> | ||
7 | </target> | ||
8 | </project> \ No newline at end of file | ||