And now make it cool.

This commit is contained in:
Robert Collins 2014-08-06 14:30:29 +12:00
parent 0727d45322
commit 043c93abcf
4 changed files with 36 additions and 4 deletions

17
README
View File

@ -25,3 +25,20 @@ To use:
* proceed with any tripleo activies you might have (building images, deploying,
etc etc).
## Advanced use
Refs that don't match the xx/yy/zz form of gerrit refs are presumed to be local
work-in-progress branches. These are not fetched, but are merged into the
rollup branch along with all the other patches. With a little care this permits
working effectively with multiple patchsets in one project without them being
made into a stack in gerrit.
When running prep-source-repos any additional arguments after the refs and
output dir are used to filter the repositories to fetch - so when working on
(say) two local orthogonal patches to nova, and you need to update your rollup
branch just do::
prep-source-repos foo bar nova
and only nova will be updated.

View File

@ -35,6 +35,7 @@ def main():
parser = argparse.ArgumentParser()
parser.add_argument("refs", help="the yaml config file")
parser.add_argument("output", help="where to put the downloaded repositories")
parser.add_argument("repos", help="what repos to update", nargs="*")
args = parser.parse_args()
SRC_ROOT = os.path.abspath(args.output)
with open(args.refs, 'rt') as arg_file:
@ -47,6 +48,8 @@ def main():
variables = []
for repo, remote in CONF['repos'].items():
if args.repos and repo not in args.repos:
continue
rd = os.path.join(SRC_ROOT, repo)
if not os.path.isdir(os.path.join(rd)):
@ -56,6 +59,9 @@ def main():
git_refs = ['master']
for ref in refs:
if len(ref.split('/')) != 3:
# Weak heuristic, may need fixing.
continue
git_refs.append(
'+refs/changes/%(ref)s:refs/changes/%(ref)s' % dict(ref=ref))
#print ' '.join(['git', 'pull', remote, ref])
@ -67,8 +73,14 @@ def main():
if not refs:
branch_name = 'master'
else:
branch_name = 'rollup_' + \
'_'.join([r[1] for r in [ref.split('/') for ref in refs]])
components = []
for ref in refs:
segments = ref.split('/')
if len(segments) == 3:
components.append(segments[1])
else:
components.append(ref)
branch_name = 'rollup_' + '_'.join(components)
check_call(['git', 'stash'], cwd=rd)
branches = check_output(['git', 'branch', '-a'], cwd=rd)
if ' ' + branch_name in branches:
@ -78,8 +90,9 @@ def main():
else:
check_call(['git', 'checkout', '-b', branch_name, 'origin/master'], cwd=rd)
for ref in refs:
check_call(
['git', 'merge', '--no-edit', 'refs/changes/%s' % ref], cwd=rd)
if len(ref.split('/')) == 3:
ref = 'refs/changes/%s' % ref
check_call(['git', 'merge', '--no-edit', ref], cwd=rd)
normalised_repo = re.sub('[^A-Za-z0-9_]', '_', repo)
if repo not in CONF['gerrit_refs']:
print 'no refs for %s' % repo

Binary file not shown.

View File

@ -35,6 +35,8 @@ repos:
# A list of patches to pull from gerrit into repos
gerrit_refs:
# The name of said repo from above.
nova:
- foo
ironic:
# Fix tear_down a node with missing info
# https://review.openstack.org/#/c/103685/