dchandler
56de29cf4f
jskad-all-in-one-dist, and thus jskad-jws, was botched.
...
nightly-build now cleans only ${bin} so that ${dist}'s files stay
around.
We now unwar all JAR files.
2003-02-03 08:21:37 +00:00
dchandler
69b07cda65
Added some utility targets pour moi.
...
Better error checking.
There's now a nightly builds HTML page, for use with a script like the
following:
#! /bin/sh
JSKAD=/www/nightly/Jskad
DEST=/www/nightly/builds
HISTORY=/www/nightly/history
DATE=`date`
if test ! -d $DEST; then \
echo "$DEST does not exist ($DATE)." >> history; exit 1; fi
(rm -fr ${DEST}/* && cd $JSKAD && cvs -f -z3 update -dP && ant dc-nightly-build \
&& cp dist/nightlyBuild.zip $DEST && cd $DEST && unzip nightlyBuild.zip \
&& rm nightlyBuild.zip && \
(cd docs \
&& mv private-javadocs-*.zip private-javadocs-today.zip \
&& mv public-javadocs-*.zip public-javadocs-today.zip \
&& mkdir public && mkdir private && \
(cd public \
&& unzip ../public-javadocs-today.zip) && \
(cd private \
&& unzip ../private-javadocs-today.zip)) \
&& \
(cd source \
&& mv THDL-Tools-src-*.zip THDL-Tools-src-today.zip))
if test $? != 0; then echo "NIGHTLY BUILD FAILED on $DATE" >> $HISTORY; exit 2; fi
(cd $JSKAD && ant check)
DDATE=`date`
if test $? != 0; then echo "'ant check' FAILED on $DATE" >> $HISTORY; exit 3; fi
DDDATE=`date`
echo "Success on start=$DATE build=$DDATE check=$DDDATE" >> $HISTORY
exit 0
2003-02-03 06:24:52 +00:00
dchandler
718e2f1283
Ignores products of the revised build.
2002-11-18 16:16:17 +00:00
dchandler
f26dd53da3
Changed the build so that Savant and QuillDriver's builds include
...
Smart*Player.java, which are accessed via reflection. Cleaned up the
code a bit so that it would compile in so doing.
Changed the 'options.txt' preferences file to reflect the new method
of selecting media players.
2002-10-27 19:12:13 +00:00