You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by li...@apache.org on 2018/09/01 18:22:19 UTC

[kafka] branch 2.0 updated: MINOR: Pass `--continue` to gradle in jenkins.sh

This is an automated email from the ASF dual-hosted git repository.

lindong pushed a commit to branch 2.0
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.0 by this push:
     new b95a7ed  MINOR: Pass `--continue` to gradle in jenkins.sh
b95a7ed is described below

commit b95a7edde0df10b1c567094f1fa3e5fbe3e6cd27
Author: Ismael Juma <is...@juma.me.uk>
AuthorDate: Sat Sep 1 11:15:49 2018 -0700

    MINOR: Pass `--continue` to gradle in jenkins.sh
    
    This ensures that the whole test suite is executed even
    if there are failures. It currently stops at a module
    boundary if there are any failures. There is a discussion
    to change the gradle default to stop after the first test failure:
    
    https://github.com/gradle/gradle/issues/6513
    
    `--continue` is recommended for CI in that discussion.
    
    Author: Ismael Juma <is...@juma.me.uk>
    
    Reviewers: Dong Lin <li...@gmail.com>
    
    Closes #5599 from ijuma/jenkins-script-continue
---
 jenkins.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jenkins.sh b/jenkins.sh
index f3ec91b..b03195e 100755
--- a/jenkins.sh
+++ b/jenkins.sh
@@ -17,4 +17,4 @@
 # This script is used for verifying changes in Jenkins. In order to provide faster feedback, the tasks are ordered so
 # that faster tasks are executed in every module before slower tasks (if possible). For example, the unit tests for all
 # the modules are executed before the integration tests.
-./gradlew clean compileJava compileScala compileTestJava compileTestScala checkstyleMain checkstyleTest findbugsMain unitTest rat integrationTest --no-daemon -PxmlFindBugsReport=true -PtestLoggingEvents=started,passed,skipped,failed "$@"
+./gradlew clean compileJava compileScala compileTestJava compileTestScala checkstyleMain checkstyleTest findbugsMain unitTest rat integrationTest --no-daemon --continue -PxmlFindBugsReport=true -PtestLoggingEvents=started,passed,skipped,failed "$@"