mirror of https://github.com/apache/lucene.git
Don't fail ASAP on Jenkins builds, run the whole build and fail finally (Jenkins does this for us with reason "unstable" once the build is done). This allows to run build completely, although some tests fail.
This commit is contained in:
parent
621527d1a2
commit
59218b90e1
|
@ -762,6 +762,7 @@ Test args: [${args}]</echo>
|
|||
<target name="jenkins-hourly">
|
||||
<antcall>
|
||||
<param name="is.jenkins.build" value="true"/>
|
||||
<param name="tests.haltonfailure" value="false"/>
|
||||
<target name="-jenkins-base"/>
|
||||
</antcall>
|
||||
</target>
|
||||
|
@ -769,6 +770,7 @@ Test args: [${args}]</echo>
|
|||
<target name="jenkins-nightly">
|
||||
<antcall>
|
||||
<param name="is.jenkins.build" value="true"/>
|
||||
<param name="tests.haltonfailure" value="false"/>
|
||||
<param name="tests.nightly" value="true"/>
|
||||
<target name="-jenkins-base"/>
|
||||
</antcall>
|
||||
|
|
Loading…
Reference in New Issue