X-Git-Url: https://gerrit.nordix.org/gitweb?a=blobdiff_plain;f=jjb%2Fcloud-infra%2Fscripts%2Ftest-package.sh;h=d9b9b53275fd16d1b482320a8facf97e975a5f8f;hb=b998ab8313d7a6eb5c6455d377aaeac2f8084b34;hp=8685c337d441b236c75bc3d8d82d23766a488749;hpb=25ebfd32ca67d3f292fe986700d05cc30126e6c3;p=infra%2Fcicd.git diff --git a/jjb/cloud-infra/scripts/test-package.sh b/jjb/cloud-infra/scripts/test-package.sh index 8685c337..d9b9b532 100644 --- a/jjb/cloud-infra/scripts/test-package.sh +++ b/jjb/cloud-infra/scripts/test-package.sh @@ -21,19 +21,22 @@ set -o errexit set -o pipefail -# NOTE (fdegir): we need to remove $WORKSPACE and clone infra/engine repository -# as infra/engine is what drives the deployment +# NOTE (akash): ONAP_TEST_BRANCH is set to master as +# no other branch is available +export ONAP_TEST_BRANCH="master" + +# NOTE (akash): we need to remove $WORKSPACE and clone infra/test repository +# as infra/test is what drives the deployment if [[ "$GERRIT_PROJECT" != "infra/test" ]]; then cd "$HOME" && /bin/rm -rf "$WORKSPACE" echo "Info : Cloning infra/engine repository" git clone -q https://gerrit.nordix.org/infra/test.git "$WORKSPACE" cd "$WORKSPACE" - export STACK_VERSION="$GERRIT_BRANCH" fi echo "Info : Packaging test stack $STACK_TYPE" cd "$WORKSPACE/test" -./package.sh -s "$STACK_TYPE" -b "$STACK_VERSION" -d "$DISTRO" -v +./package.sh -s "$STACK_TYPE" -b "$ONAP_TEST_BRANCH" -d "$DISTRO" -v # vim: set ts=2 sw=2 expandtab: