Skip to content

Commit

Permalink
Adjust grenade branches for mitaka
Browse files Browse the repository at this point in the history
This makes grenade work with stable mitaka, both upgrading to it, and
upgrading from it in master.

Depends-On: Ic9fc5cde67691ce03b3d612d86da7207608e20b1
grenade fixes for OS_PROJECT_NAME

Change-Id: I73d2f7f83f700e430d231235e6d2277100036cd5
  • Loading branch information
sdague committed Mar 24, 2016
1 parent 589ca4f commit be06eea
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion devstack-vm-gate-wrap.sh
Expand Up @@ -269,6 +269,9 @@ if [[ -n "$DEVSTACK_GATE_GRENADE" ]]; then
export GRENADE_NEW_BRANCH="stable/liberty"
elif [[ "$GRENADE_BASE_BRANCH" == "stable/liberty" ]]; then
export GRENADE_OLD_BRANCH="stable/liberty"
export GRENADE_NEW_BRANCH="stable/mitaka"
elif [[ "$GRENADE_BASE_BRANCH" == "stable/mitaka" ]]; then
export GRENADE_OLD_BRANCH="stable/mitaka"
export GRENADE_NEW_BRANCH="$GIT_BRANCH"
fi
;;
Expand Down Expand Up @@ -296,8 +299,11 @@ if [[ -n "$DEVSTACK_GATE_GRENADE" ]]; then
elif [[ "$GRENADE_BASE_BRANCH" == "stable/liberty" ]]; then
export GRENADE_OLD_BRANCH="stable/kilo"
export GRENADE_NEW_BRANCH="stable/liberty"
elif [[ "$GRENADE_BASE_BRANCH" == "stable/mitaka" ]]; then
export GRENADE_OLD_BRANCH="stable/kilo"
export GRENADE_NEW_BRANCH="stable/mitaka"
else # master
export GRENADE_OLD_BRANCH="stable/liberty"
export GRENADE_OLD_BRANCH="stable/mitaka"
export GRENADE_NEW_BRANCH="$GIT_BRANCH"
fi
;;
Expand Down

0 comments on commit be06eea

Please sign in to comment.