From 05fbee69157a40cad817f3126559e0ae63ef7a02 Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Mon, 27 Mar 2017 18:23:23 +0300 Subject: [PATCH] [rally] add stable 0.9 branch Rally team want to support "stable" branch for latest major Rally release to be able backporting bug-fixes. This patch: * adds "rally" to exception list of stable branch check, since our releases do not relate to OpenStack releases. * adds first "stable" branch 0.9 Change-Id: I4184f79e01e2295aad2db1248e4a0bb3e9eaa098 --- deliverables/_independent/rally.yaml | 3 +++ openstack_releases/cmds/validate.py | 1 + 2 files changed, 4 insertions(+) diff --git a/deliverables/_independent/rally.yaml b/deliverables/_independent/rally.yaml index c009ccfd84..e035f5df26 100644 --- a/deliverables/_independent/rally.yaml +++ b/deliverables/_independent/rally.yaml @@ -5,6 +5,9 @@ type: other release-notes: http://rally.readthedocs.io/en/latest/project_info/release_notes/archive.html include-pypi-link: yes send-announcements-to: openstack-announce@lists.openstack.org +branches: + - name: stable/0.9 + location: 0.9.0 releases: - version: 0.0.4 projects: diff --git a/openstack_releases/cmds/validate.py b/openstack_releases/cmds/validate.py index 1916093aee..4bba13b7e2 100644 --- a/openstack_releases/cmds/validate.py +++ b/openstack_releases/cmds/validate.py @@ -67,6 +67,7 @@ _VALID_BRANCH_PREFIXES = set([ ]) _NO_STABLE_BRANCH_CHECK = set([ 'gnocchi', + 'rally', ]) _PLEASE = ('It is too expensive to determine this value during ' 'the site build, please set it explicitly.')