diff options
author | Adam Frisby | 2008-04-23 08:42:15 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-23 08:42:15 +0000 |
commit | 2eb542dc59cc9f6ab04cd1caad42ae5d49f4e283 (patch) | |
tree | 668201bac91316b43356efd7fac98729b01bedf7 /.nant/bamboo.build | |
parent | * Moving bamboo.build (diff) | |
download | opensim-SC_OLD-2eb542dc59cc9f6ab04cd1caad42ae5d49f4e283.zip opensim-SC_OLD-2eb542dc59cc9f6ab04cd1caad42ae5d49f4e283.tar.gz opensim-SC_OLD-2eb542dc59cc9f6ab04cd1caad42ae5d49f4e283.tar.bz2 opensim-SC_OLD-2eb542dc59cc9f6ab04cd1caad42ae5d49f4e283.tar.xz |
* Updated filesystem refs for bamboo.build
Diffstat (limited to '')
-rw-r--r-- | .nant/bamboo.build | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/.nant/bamboo.build b/.nant/bamboo.build index f819d54..1eb4750 100644 --- a/.nant/bamboo.build +++ b/.nant/bamboo.build | |||
@@ -1,17 +1,17 @@ | |||
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" /> | 9 | <exec program="mono" commandline="../bin/Prebuild.exe /target nant" /> |
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" /> |
@@ -19,20 +19,20 @@ | |||
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 | <zip zipfile="${projectdir}.zip"> | 24 | <zip zipfile="../${projectdir}.zip"> |
25 | <fileset basedir="."> | 25 | <fileset basedir="../"> |
26 | <include name="${projectdir}/**" /> | 26 | <include name="${projectdir}/**" /> |
27 | </fileset> | 27 | </fileset> |
28 | </zip> | 28 | </zip> |
29 | <tar destfile="${projectdir}.tar.gz" compression="GZip"> | 29 | <tar destfile="../${projectdir}.tar.gz" compression="GZip"> |
30 | <fileset basedir="."> | 30 | <fileset basedir="../"> |
31 | <include name="${projectdir}/**" /> | 31 | <include name="${projectdir}/**" /> |
32 | </fileset> | 32 | </fileset> |
33 | </tar> | 33 | </tar> |
34 | 34 | ||
35 | <copy file="${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" /> | 35 | <copy file="../${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" /> |
36 | <copy file="${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" /> | 36 | <copy file="../${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" /> |
37 | </target> | 37 | </target> |
38 | </project> \ No newline at end of file | 38 | </project> \ No newline at end of file |