Added a thdl-nightly-build target for nightly builds on
iris.lib.virginia.edu. This will need to be edited to use the real path on iris.
This commit is contained in:
parent
1ae7948fed
commit
149eecc4fb
1 changed files with 17 additions and 1 deletions
18
build.xml
18
build.xml
|
@ -857,7 +857,7 @@
|
|||
<target name="dc-nightly-build"
|
||||
description="How Chandler r0x0rs the nightly build's b0x0rs">
|
||||
<antcall target="${dcnbt}">
|
||||
<param name="keystore" value="file:///home/chandler/thdl/sandboxes/Jskad/NightlyBuildStore"/>
|
||||
<param name="keystore" value="file:///home/my_www/thdl/nightly/Jskad/NightlyBuildStore"/>
|
||||
<param name="key.alias" value="me"/>
|
||||
<param name="dgkey.password" value="nightly"/>
|
||||
<param name="keystore.password" value="nightly"/>
|
||||
|
@ -865,6 +865,22 @@
|
|||
</antcall>
|
||||
</target>
|
||||
|
||||
<!-- THDL uses this to do nightly builds. The passwords are included
|
||||
in this publically-available file because the keystore is basically
|
||||
a dummy keystore. -->
|
||||
<target name="thdl-nightly-build"
|
||||
description="How THDL does nightly builds">
|
||||
<antcall target="${dcnbt}">
|
||||
<param name="keystore"
|
||||
value="file:///home/www/thdl/builds/Jskad/NightlyBuildStore"/>
|
||||
<param name="key.alias" value="me"/>
|
||||
<param name="dgkey.password" value="nightly"/>
|
||||
<param name="keystore.password" value="nightly"/>
|
||||
<param name="jnlp.codebase"
|
||||
value="http://iris.lib.virginia.edu/thdl/builds"/>
|
||||
</antcall>
|
||||
</target>
|
||||
|
||||
<target name="cvs-update" description="Performs a CVS update.">
|
||||
<cvs cvsRoot=":pserver:anonymous@cvs.sourceforge.net:/cvsroot/thdltools"
|
||||
command="-f -z3 -q update -d -P" failonerror="true"/>
|
||||
|
|
Loading…
Reference in a new issue