Update grenade settings for stable/stein

Change-Id: If206584f53e2b801cf911b750e9ee9836a240cae
This commit is contained in:
ghanshyam 2019-03-26 19:41:16 +00:00
parent 8fe713bcb1
commit 9f816121cb
1 changed files with 7 additions and 1 deletions

View File

@ -322,6 +322,9 @@ if [[ -n "$DEVSTACK_GATE_GRENADE" ]]; then
export GRENADE_NEW_BRANCH="stable/rocky"
elif [[ "$GRENADE_BASE_BRANCH" == "stable/rocky" ]]; then
export GRENADE_OLD_BRANCH="stable/rocky"
export GRENADE_NEW_BRANCH="stable/stein"
elif [[ "$GRENADE_BASE_BRANCH" == "stable/stein" ]]; then
export GRENADE_OLD_BRANCH="stable/stein"
export GRENADE_NEW_BRANCH="$GIT_BRANCH"
fi
;;
@ -350,8 +353,11 @@ if [[ -n "$DEVSTACK_GATE_GRENADE" ]]; then
elif [[ "$GRENADE_BASE_BRANCH" == "stable/rocky" ]]; then
export GRENADE_OLD_BRANCH="stable/queens"
export GRENADE_NEW_BRANCH="stable/rocky"
else # master
elif [[ "$GRENADE_BASE_BRANCH" == "stable/stein" ]]; then
export GRENADE_OLD_BRANCH="stable/rocky"
export GRENADE_NEW_BRANCH="stable/stein"
else # master
export GRENADE_OLD_BRANCH="stable/stein"
export GRENADE_NEW_BRANCH="$GIT_BRANCH"
fi
;;