From 8d38ab18ff3a6f2287846dcfb4120b7baf0bb0c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Sapp=C3=A9=20Griot?= Date: Wed, 13 Nov 2024 10:49:47 +0100 Subject: [PATCH] JBTM-3926 leftover --- pom.xml | 1 + scripts/hudson/narayana.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3cbe7db..5b06d5f 100644 --- a/pom.xml +++ b/pom.xml @@ -96,6 +96,7 @@ true 4.8.3.1 2.2.224 + 1.8.1 2.2 4.5.14 diff --git a/scripts/hudson/narayana.sh b/scripts/hudson/narayana.sh index 3014631..c5041f3 100755 --- a/scripts/hudson/narayana.sh +++ b/scripts/hudson/narayana.sh @@ -238,7 +238,7 @@ function build_narayana { echo "Using MAVEN_OPTS: $MAVEN_OPTS" - ./build.sh -B -Prelease,community$OBJECT_STORE_PROFILE $ORBARG "$@" $NARAYANA_ARGS $IPV6_OPTS $CODE_COVERAGE_ARGS clean install + ./build.sh -B -Prelease$OBJECT_STORE_PROFILE $ORBARG "$@" $NARAYANA_ARGS $IPV6_OPTS $CODE_COVERAGE_ARGS clean install [ $? -eq 0 ] || fatal "narayana build failed" @@ -354,7 +354,7 @@ function lra_tests { echo "#0. LRA Test" echo "#0. Running LRA tests using $ARQ_PROF profile" # Ideally the following target would be test and integration-test but that doesn't seem to shutdown the server each time - PRESERVE_WORKING_DIR=true ./build.sh -fae -B -Pcommunity -P$ARQ_PROF $CODE_COVERAGE_ARGS $ENABLE_LRA_TRACE_LOGS -Dlra.test.timeout.factor="${LRA_TEST_TIMEOUT_FACTOR:-1.5}" "$@" install + PRESERVE_WORKING_DIR=true ./build.sh -fae -B -P$ARQ_PROF $CODE_COVERAGE_ARGS $ENABLE_LRA_TRACE_LOGS -Dlra.test.timeout.factor="${LRA_TEST_TIMEOUT_FACTOR:-1.5}" "$@" install lra_arq=$? if [ $lra_arq != 0 ] ; then fatal "LRA Test failed with failures in $ARQ_PROF profile" ; fi }