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:44 UTC

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

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 8cb90ea487016b7792837edd1fc514b5062bda7b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 23 08:48:20 2020 +0200

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

diff --git a/Jenkinsfile.jdk12 b/Jenkinsfile.jdk12
index 2ff15b5..546f80f 100644
--- a/Jenkinsfile.jdk12
+++ b/Jenkinsfile.jdk12
@@ -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') {