diff options
author | Adam Frisby | 2008-05-18 23:23:39 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-18 23:23:39 +0000 |
commit | 7ed86b429a832f159f54e73f2c8948e724316cda (patch) | |
tree | 716b7812313996a78ad3bbbed352d10262192f5f /.nant/bamboo.build | |
parent | Formatting cleanup, minor refactoring. Fixed some comparisons of value types... (diff) | |
download | opensim-SC_OLD-7ed86b429a832f159f54e73f2c8948e724316cda.zip opensim-SC_OLD-7ed86b429a832f159f54e73f2c8948e724316cda.tar.gz opensim-SC_OLD-7ed86b429a832f159f54e73f2c8948e724316cda.tar.bz2 opensim-SC_OLD-7ed86b429a832f159f54e73f2c8948e724316cda.tar.xz |
* Committing a change to our build script to generate doxygen documentation with each build. Thanks MikeM. (Issue#1279)
Diffstat (limited to '')
-rw-r--r-- | .nant/bamboo.build | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.nant/bamboo.build b/.nant/bamboo.build index 11cf78e..79a9792 100644 --- a/.nant/bamboo.build +++ b/.nant/bamboo.build | |||
@@ -22,7 +22,7 @@ | |||
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 | 25 | ||
26 | <zip zipfile="../${projectdir}.zip"> | 26 | <zip zipfile="../${projectdir}.zip"> |
27 | <fileset basedir="${projectdir}/"> | 27 | <fileset basedir="${projectdir}/"> |
28 | <include name="**" /> | 28 | <include name="**" /> |
@@ -33,8 +33,19 @@ | |||
33 | <include name="**" /> | 33 | <include name="**" /> |
34 | </fileset> | 34 | </fileset> |
35 | </tar> | 35 | </tar> |
36 | 36 | ||
37 | <copy file="../${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" /> | 37 | <copy file="../${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" /> |
38 | <copy file="../${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" /> | 38 | <copy file="../${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" /> |
39 | |||
40 | <echo message="Generating Doxygen documentation" /> | ||
41 | <exec program="doxygen" workingdir="../doc" commandline="doxygen.conf" /> | ||
42 | |||
43 | <tar destfile="../${projectdir}-doc-html.tar.gz" compression="GZip"> | ||
44 | <fileset basedir=".."> | ||
45 | <include name="doc/html/**" /> | ||
46 | </fileset> | ||
47 | </tar> | ||
48 | |||
49 | <copy file="../${projectdir}-doc-html.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK-doc-html.tar.gz" overwrite="true" /> | ||
39 | </target> | 50 | </target> |
40 | </project> | 51 | </project> |