Use same regex expression to match stable branches

There is a subtle difference in using non-capturing
groups. Even though both regex expressions result in
a match, the one with the non-capturing group won't
let us know the branch and it's not consistent with
the other regex expressions in this file.

Change-Id: I1062ef7b19dc27b93ce52abebe83847b4bd3f172
This commit is contained in:
armando-migliaccio 2014-07-30 07:15:41 -07:00
parent 6062db3f1a
commit 28b9518682

View File

@ -493,7 +493,7 @@ jobs:
- name: check-tempest-dsvm-f20
voting: false
- name: gate-designate-devstack-dsvm
branch: ^(?!stable/(?:havana|icehouse)).*$
branch: ^(?!stable/(havana|icehouse)).*$
# For Gerrit ver 2.4.x (using maven)
- name: ^(gate|check)-gerrit-unittests$
branch: ^openstack/2\.4.*$