You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/07/23 06:49:43 UTC

[camel] 02/04: CI migration: Removed checkstyle step in jenkinsfile since it's not present in CI (JDK11)

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

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit fed29729c0f0cdd8b4d4891c37c73c76b00fbac5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 23 08:46:48 2020 +0200

    CI migration: Removed checkstyle step in jenkinsfile since it's not present in CI (JDK11)
---
 Jenkinsfile.jdk11 | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/Jenkinsfile.jdk11 b/Jenkinsfile.jdk11
index 519ec09..f6709f2 100644
--- a/Jenkinsfile.jdk11
+++ b/Jenkinsfile.jdk11
@@ -58,11 +58,6 @@ pipeline {
             steps {
                 sh "./mvnw $MAVEN_PARAMS -Psourcecheck -Dcheckstyle.failOnViolation=false checkstyle:check"
             }
-            post {
-                always {
-                    checkstyle pattern: '**/checkstyle-result.xml', canRunOnFailed: true
-                }
-            }
         }
 
         stage('Test') {