add ccsdk-sli-northbound
[infra/cicd.git] / jjb / cloud-infra / scripts / test-package.sh
index ef20ad087e05acc8b1b452b46e6735865fcea82b..d9b9b53275fd16d1b482320a8facf97e975a5f8f 100644 (file)
 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"
@@ -30,18 +34,9 @@ if [[ "$GERRIT_PROJECT" != "infra/test" ]]; then
   cd "$WORKSPACE"
 fi
 
-# NOTE (fdegir): this variable is set by generate-change-metadata.sh script
-# if a dependency to engine repo is determined so we check out that refspec
-# to ensure we respect the dependency
-if [[ ! -z "${NORDIX_ENGINE_REFSPEC+x}" ]]; then
-  echo "Info  : Fetching dependent change ${NORDIX_ENGINE_REFSPEC} infra/engine"
-  git fetch "https://gerrit.nordix.org/infra/test" ${NORDIX_ENGINE_REFSPEC} && git checkout FETCH_HEAD
-fi
-
-echo "Info  : Packaging stack $STACK_TYPE"
+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:
-