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 8c120d7f9ee (chores) ci: do log skipped platforms
8c120d7f9ee is described below
commit 8c120d7f9ee08f7d5e7c40317134fad49707f608
Author: Otavio Rodolfo Piske <[email protected]>
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}"
}
}
}