You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/03/30 18:05:42 UTC

svn commit: r1307499 - in /lucene/dev/nightly: common-maven.sh hudson-lucene-trunk.sh hudson-lusolr-tests-trunk.sh hudson-solr-trunk.sh

Author: rmuir
Date: Fri Mar 30 16:05:42 2012
New Revision: 1307499

URL: http://svn.apache.org/viewvc?rev=1307499&view=rev
Log:
have jenkins call clean-jars before build (also to detect checkedin jars)

Modified:
    lucene/dev/nightly/common-maven.sh
    lucene/dev/nightly/hudson-lucene-trunk.sh
    lucene/dev/nightly/hudson-lusolr-tests-trunk.sh
    lucene/dev/nightly/hudson-solr-trunk.sh

Modified: lucene/dev/nightly/common-maven.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/common-maven.sh?rev=1307499&r1=1307498&r2=1307499&view=diff
==============================================================================
--- lucene/dev/nightly/common-maven.sh (original)
+++ lucene/dev/nightly/common-maven.sh Fri Mar 30 16:05:42 2012
@@ -41,5 +41,5 @@ ANT_OPTS="-Xmx256m -XX:+CMSClassUnloadin
     -Dsvn.exe=$SVN_EXE \
     -Dm2.repository.id=apache.snapshots.https \
     -Dm2.repository.url=https://repository.apache.org/content/repositories/snapshots \
-    clean generate-maven-artifacts
+    clean-jars clean generate-maven-artifacts
 echo ">>> Done deploying Maven snapshot artifacts to the Apache snapshots repository"

Modified: lucene/dev/nightly/hudson-lucene-trunk.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-lucene-trunk.sh?rev=1307499&r1=1307498&r2=1307499&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-lucene-trunk.sh (original)
+++ lucene/dev/nightly/hudson-lucene-trunk.sh Fri Mar 30 16:05:42 2012
@@ -18,7 +18,7 @@ cd $WORKSPACE/$CORE_DIR
 $ANT_HOME/bin/ant -Dversion=$VERSION \
   -Dsvnversion.exe=$SVNVERSION_EXE \
   -Dsvn.exe=$SVN_EXE \
-  clean package-tgz-src package-tgz
+  clean-jars clean package-tgz-src package-tgz
 # release it
 mv -f dist/*-src.tgz $ARTIFACTS
 mv -f build/docs/changes $ARTIFACTS

Modified: lucene/dev/nightly/hudson-lusolr-tests-trunk.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-lusolr-tests-trunk.sh?rev=1307499&r1=1307498&r2=1307499&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-lusolr-tests-trunk.sh (original)
+++ lucene/dev/nightly/hudson-lusolr-tests-trunk.sh Fri Mar 30 16:05:42 2012
@@ -6,7 +6,7 @@ export JAVA_HOME
 
 cd $WORKSPACE/$ROOT_DIR
 $ANT_HOME/bin/ant \
-  clean
+  clean-jars clean
 
 # run tests for everything from root
 cd $WORKSPACE/$ROOT_DIR

Modified: lucene/dev/nightly/hudson-solr-trunk.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/hudson-solr-trunk.sh?rev=1307499&r1=1307498&r2=1307499&view=diff
==============================================================================
--- lucene/dev/nightly/hudson-solr-trunk.sh (original)
+++ lucene/dev/nightly/hudson-solr-trunk.sh Fri Mar 30 16:05:42 2012
@@ -22,7 +22,7 @@ $ANT_HOME/bin/ant \
   -Dtests.nightly=true \
   -Djunit.formatter=xml \
   -Dargs="$TEST_JVM_ARGS" \
-  clean test package
+  clean-jars clean test package
 
 # release it
 mv -f package/* $ARTIFACTS