Update grenade settings for stable/queens

Change-Id: I2709f5527552fd4fc406f870ef35c4b6e4b9dae9
This commit is contained in:
Sean McGinnis 2018-02-12 15:02:19 -06:00
parent dcbf25e2c9
commit c41b7cf772
1 changed files with 7 additions and 1 deletions

View File

@ -311,6 +311,9 @@ if [[ -n "$DEVSTACK_GATE_GRENADE" ]]; then
export GRENADE_NEW_BRANCH="stable/pike"
elif [[ "$GRENADE_BASE_BRANCH" == "stable/pike" ]]; then
export GRENADE_OLD_BRANCH="stable/pike"
export GRENADE_NEW_BRANCH="stable/queens"
elif [[ "$GRENADE_BASE_BRANCH" == "stable/queens" ]]; then
export GRENADE_OLD_BRANCH="stable/queens"
export GRENADE_NEW_BRANCH="$GIT_BRANCH"
fi
;;
@ -333,8 +336,11 @@ if [[ -n "$DEVSTACK_GATE_GRENADE" ]]; then
elif [[ "$GRENADE_BASE_BRANCH" == "stable/pike" ]]; then
export GRENADE_OLD_BRANCH="stable/ocata"
export GRENADE_NEW_BRANCH="stable/pike"
else # master
elif [[ "$GRENADE_BASE_BRANCH" == "stable/queens" ]]; then
export GRENADE_OLD_BRANCH="stable/pike"
export GRENADE_NEW_BRANCH="stable/queens"
else # master
export GRENADE_OLD_BRANCH="stable/queens"
export GRENADE_NEW_BRANCH="$GIT_BRANCH"
fi
;;