This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch camel-4.0.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit f6a0e1ca5a7c6bd0b9b5f31de779db5cbfa636c9 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Tue Apr 30 10:26:33 2024 +0200 (chores) ci: do log skipped platforms --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 933df5a9cb3..929638b43d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -118,9 +118,11 @@ pipeline { echo "Code quality review ENABLED for ${PLATFORM}" sh "./mvnw $MAVEN_PARAMS -Dsonar.host.url=https://sonarcloud.io -Dsonar.java.experimental.batchModeSizeInKB=2048 -Dsonar.organization=apache -Dsonar.projectKey=apache_camel -Dsonar.branch.name=$BRANCH_NAME org.sonarsource.scanner.maven:sonar-maven-plugin:sonar" } + } else { + echo "Code quality review disabled for ${PLATFORM} with JDK ${JDK_NAME}" } } else { - echo "Code quality review disabled for ${PLATFORM}" + echo "Code quality review disabled for ${PLATFORM} with JDK ${JDK_NAME}" } } }