This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch devel-camel-20383 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 71e6d0901cb59be177c0c1dda1294a4401ba2f2b Author: Vaishnavi R <v...@var-thinkpadp1gen4i.remote.csb> AuthorDate: Fri Apr 5 19:22:33 2024 +0530 Fixed few syntax errors. --- Jenkinsfile.matrix.platform | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile.matrix.platform b/Jenkinsfile.matrix.platform index 020abcaf3ca..2897ef44a5a 100644 --- a/Jenkinsfile.matrix.platform +++ b/Jenkinsfile.matrix.platform @@ -135,10 +135,10 @@ pipeline { sh 'java -version' timeout(unit: 'HOURS', time: 7) { script { - if (${PLATFORM} == "ubuntu"){ - if(${JDK_NAME} == "jdk_21_latest") { + if ("${PLATFORM}" == "ubuntu") { + if ("${JDK_NAME}" == "jdk_21_latest") { sh "./mvnw $MAVEN_PARAMS $MAVEN_TEST_PARAMS_UBUNTU -Darchetype.test.skip -Dmaven.test.failure.ignore=true -Dcheckstyle.skip=true verify -Dcamel.threads.virtual.enabled=${params.VIRTUAL_THREAD}" - } else{ + } else { sh "./mvnw $MAVEN_PARAMS $MAVEN_TEST_PARAMS -Darchetype.test.skip -Dmaven.test.failure.ignore=true -Dcheckstyle.skip=true verify" } } else {