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
commit b218ce893a9f3b34cec2e3328f5d82757f9e04ea Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon May 20 12:30:04 2024 +0200 INFRA-25795: use AVX-enabled hosts for x86 tests This should help with CAMEL-20782 and allow us to re-enable MongoDB tests --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 929638b43d6..b35a5011fdd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -63,7 +63,7 @@ pipeline { } axis { name 'PLATFORM' - values 'ppc64le', 's390x', 'ubuntu' + values 'ppc64le', 's390x', 'ubuntu-avx' } } excludes { @@ -112,7 +112,7 @@ pipeline { stage('Code Quality Review') { steps { script { - if ("${PLATFORM}" == "ubuntu") { + if ("${PLATFORM}" == "ubuntu-avx") { if ("${JDK_NAME}" == "jdk_17_latest") { withCredentials([string(credentialsId: 'apache-camel-core', variable: 'SONAR_TOKEN')]) { echo "Code quality review ENABLED for ${PLATFORM}" @@ -133,7 +133,7 @@ pipeline { echo "Do Test for ${PLATFORM}-${JDK_NAME}" timeout(unit: 'HOURS', time: 7) { script { - if ("${PLATFORM}" == "ubuntu") { + if ("${PLATFORM}" == "ubuntu-avx") { 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 {
