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

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


The following commit(s) were added to refs/heads/main by this push:
     new 19a7b3f  (chores) Avoid re-running the checkstyle checks twice
19a7b3f is described below

commit 19a7b3faf7551a7e5ab36017e33690b06df1692b
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Sat Jan 8 14:28:06 2022 +0100

    (chores) Avoid re-running the checkstyle checks twice
---
 .github/workflows/master-pr-build.yml | 2 +-
 Jenkinsfile                           | 2 +-
 Jenkinsfile.jdk17                     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/master-pr-build.yml 
b/.github/workflows/master-pr-build.yml
index b7ef1ee..666d65c 100644
--- a/.github/workflows/master-pr-build.yml
+++ b/.github/workflows/master-pr-build.yml
@@ -60,4 +60,4 @@ jobs:
           key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
           restore-keys: ${{ runner.os }}-m2
       - name: maven build
-        run: ./mvnw -V -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false 
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --no-transfer-progress 
-Psourcecheck -DskipTests install
+        run: ./mvnw -V -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false 
-Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --no-transfer-progress 
-Psourcecheck -DskipTests -Dcheckstyle.skip=true install
diff --git a/Jenkinsfile b/Jenkinsfile
index b8d6716..1489f12 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -83,7 +83,7 @@ pipeline {
 
         stage('Test') {
             steps {
-                sh "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true 
verify"
+                sh "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true 
-Dcheckstyle.skip=true verify"
             }
             post {
                 always {
diff --git a/Jenkinsfile.jdk17 b/Jenkinsfile.jdk17
index 6c07a28..a2dd9a8 100644
--- a/Jenkinsfile.jdk17
+++ b/Jenkinsfile.jdk17
@@ -75,7 +75,7 @@ pipeline {
 
         stage('Test') {
             steps {
-                sh "./mvnw $MAVEN_PARAMS -Darchetype.test.skip 
-Dmaven.test.failure.ignore=true verify"
+                sh "./mvnw $MAVEN_PARAMS -Darchetype.test.skip 
-Dmaven.test.failure.ignore=true -Dcheckstyle.skip=true verify"
             }
             post {
                 always {

Reply via email to