Merge "Add infra-puppet-core and release groups"

This commit is contained in:
Jenkins 2015-07-16 23:27:01 +00:00 committed by Gerrit Code Review
commit 1d9f5f5e40

View File

@ -157,9 +157,19 @@ def main():
core_groups = ['infra-core']
for project in projects:
shortname = project.split('/')[1]
for suffix in ['-core', '-release']:
group = shortname + suffix
configure_group(gerrit, group, include_groups=['infra-core'])
group = shortname + '-core'
include_groups = ['infra-core']
if shortname.startswith('puppet-'):
include_groups.append('infra-puppet-core')
configure_group(gerrit, group, include_groups=include_groups)
group = shortname + '-release'
include_groups = ['infra-core']
if shortname.startswith('puppet-'):
include_groups.append('infra-puppet-release')
configure_group(gerrit, group, include_groups=include_groups)
group = shortname + '-core'
core_groups.append(group)