For now I added the SVN task only to the Ubuntu Linux builds on SDDS server. ASF Jenkins does not run it (because the hack uses svnkit to check repo status which spawn a JVM on every svn call) and windows does not run it, too (as fork is horribly slow on windows)
Currently I am working on a solution (without a java-code task at all, just ANT <script/>) that makes a locally installed SVN obsolete completely. I also replaced all svn export commands in our build.xml to in-process calls from the build.xml to svnkit. Licene is no problem here as we don’t link the code from our Lucene source code. Uwe ----- Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: [email protected] > -----Original Message----- > From: [email protected] [mailto:[email protected]] > Sent: Monday, August 27, 2012 6:44 PM > To: [email protected] > Subject: svn commit: r1377738 - /lucene/dev/trunk/build.xml > > Author: rmuir > Date: Mon Aug 27 16:43:56 2012 > New Revision: 1377738 > > URL: http://svn.apache.org/viewvc?rev=1377738&view=rev > Log: > disable check for now until jenkins configurations are fixed to not be so slow > > Modified: > lucene/dev/trunk/build.xml > > Modified: lucene/dev/trunk/build.xml > URL: > http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1377738&r1=13 > 77737&r2=1377738&view=diff > ================================================================ > ============== > --- lucene/dev/trunk/build.xml (original) > +++ lucene/dev/trunk/build.xml Mon Aug 27 16:43:56 2012 > @@ -262,7 +262,9 @@ > </target> > > <!-- Jenkins tasks --> > - <target name="jenkins-hourly" depends="clean,test,validate,-jenkins- > javadocs-lint,-svn-status,check-svn-properties"/> > + <!-- TODO: figure out how to run check-svn-properties for the various > jenkins' that > + are configured in slow ways / have slow i/o systems --> > + <target name="jenkins-hourly" depends="clean,test,validate,-jenkins- > javadocs-lint,-svn-status"/> > > <target name="jenkins-clover"> > <antcall target="-jenkins-clover"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
