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:
Uwe Schindler 2016-07-17 13:02:03 +02:00
parent 621527d1a2
commit 59218b90e1
1 changed files with 2 additions and 0 deletions

View File

@ -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>