X-Git-Url: https://gerrit.nordix.org/gitweb?a=blobdiff_plain;f=jjb%2Fcloud-infra%2Fscripts%2Fxtesting-healthcheck.sh;h=5b63fa26b68d1596595af990f6d16aa373e3a96e;hb=3b5d5d8f359a4207872edf32773fdb72c3193eb7;hp=a85c3a755520c8b8bf927a9852bc1ada1f252d35;hpb=41a2d0c59d27d75f124e168bc2acca0e91ab16f4;p=infra%2Fcicd.git diff --git a/jjb/cloud-infra/scripts/xtesting-healthcheck.sh b/jjb/cloud-infra/scripts/xtesting-healthcheck.sh index a85c3a75..5b63fa26 100755 --- a/jjb/cloud-infra/scripts/xtesting-healthcheck.sh +++ b/jjb/cloud-infra/scripts/xtesting-healthcheck.sh @@ -21,18 +21,21 @@ set -o errexit set -o pipefail +# NOTE (eprasad) we need to override execution mode variable to mode supported by test framework +export EXECUTION_MODE=$(echo "$EXECUTION_MODE" | sed 's/deployment/test/g') + +if [[ "$EXECUTION_MODE" == "offline-test" ]]; then + TEST_ROOT_DIR="/opt/test/offline/git/test" +else + TEST_ROOT_DIR="$WORKSPACE" +fi + echo "Info : Cloning infra/test repository" cd $HOME && /bin/rm -rf $WORKSPACE git clone -q $TEST_REPO_URL $WORKSPACE -# NOTE (eprasad): we need to override execution mode variable coming from change.properties file -if [[ "$CI_LOOP" != "release" ]]; then - export EXECUTION_MODE=$(echo "$EXECUTION_MODE" | sed 's/deployment/test/g') -else - export EXECUTION_MODE=online-test -fi -cd $WORKSPACE/test +cd "$TEST_ROOT_DIR/test" ./test.sh -s "$STACK_TYPE" -b "$BRANCH" -c "$DEPLOY_SCENARIO" -f "$TEST_FW" -t "$TEST_SUITE" \ -o /tmp/openrc -i /tmp/inventory.ini -y -v