Point to Queens as previous branch

Change-Id: I73e8d8a05c24f70ff0c7801db711e8b945d6c364
This commit is contained in:
Jean-Philippe Evrard 2018-02-27 10:22:23 +00:00
parent 0c8f669318
commit 7b4989d104
3 changed files with 4 additions and 4 deletions

View File

@ -296,8 +296,8 @@ pdf_documents = [
latest_tag = os.popen('git describe --abbrev=0 --tags').read().strip('\n')
previous_release_branch_name='pike'
current_release_branch_name='queens'
previous_release_branch_name='queens'
current_release_branch_name='rocky'
# Var specifically for using in URLs; differs because it might be 'draft'
# on master for deploy guide
deploy_branch_link_name = current_release_branch_name

View File

@ -53,7 +53,7 @@ export ACTION=${2:-"deploy"}
# Set the source branch for upgrade tests
# Be sure to change this whenever a new stable branch
# is created. The checkout must always be N-1.
export UPGRADE_SOURCE_BRANCH=${UPGRADE_SOURCE_BRANCH:-'stable/pike'}
export UPGRADE_SOURCE_BRANCH=${UPGRADE_SOURCE_BRANCH:-'stable/queens'}
## Change branch for Upgrades ------------------------------------------------
# If the action is to upgrade, then store the current SHA,

View File

@ -110,7 +110,7 @@ fi
# tests repo are not supported.
if [[ "${CLONE_UPGRADE_TESTS}" == "yes" ]]; then
if [[ ! -d "${WORKING_DIR}/tests/common/previous" ]]; then
git clone -b stable/pike \
git clone -b stable/queens \
https://git.openstack.org/openstack/openstack-ansible-tests \
${WORKING_DIR}/tests/common/previous
fi