87e0be543f
Do not ignore a deliverable if there is a branch created. This ensures that the tagless deliverables like devstack and grenade. Change-Id: I7174070a5bda0845fc0c94a8ecc33ba7ab00eeb2 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from __future__ import print_function
|
|
|
|
import argparse
|
|
import os.path
|
|
|
|
import openstack_releases
|
|
from openstack_releases import deliverable
|
|
from openstack_releases import yamlutils
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument(
|
|
'old_series',
|
|
help='the previous release series, such as "newton"',
|
|
)
|
|
parser.add_argument(
|
|
'new_series',
|
|
help='the new release series, such as "ocata"',
|
|
)
|
|
parser.add_argument(
|
|
'--deliverables-dir',
|
|
default=openstack_releases.deliverable_dir,
|
|
help='location of deliverable files',
|
|
)
|
|
args = parser.parse_args()
|
|
|
|
all_deliv = deliverable.Deliverables(
|
|
root_dir=args.deliverables_dir,
|
|
collapse_history=False,
|
|
)
|
|
|
|
new_deliverables = set(
|
|
name
|
|
for team, series, name, data in
|
|
all_deliv.get_deliverables(None, args.new_series)
|
|
)
|
|
|
|
outdir = os.path.join(args.deliverables_dir, args.new_series)
|
|
if not os.path.exists(outdir):
|
|
print('creating output directory {}'.format(outdir))
|
|
os.mkdir(outdir)
|
|
|
|
old_deliverables = all_deliv.get_deliverables(None, args.old_series)
|
|
for team, series, name, data in old_deliverables:
|
|
if name in new_deliverables:
|
|
continue
|
|
if not data.get('releases') and not data.get('branches'):
|
|
# There were no releases for the deliverable in the
|
|
# previous series, stop carrying it over.
|
|
print('{} skipped (no releases in {})'.format(name, args.old_series))
|
|
continue
|
|
# Clean up some series-specific data that should not be copied
|
|
# over.
|
|
for key in ['releases', 'branches', 'release-notes']:
|
|
if key in data:
|
|
del data[key]
|
|
outfilename = os.path.join(outdir, name + '.yaml')
|
|
with open(outfilename, 'w', encoding='utf-8') as f:
|
|
print('{} created'.format(outfilename))
|
|
f.write(yamlutils.dumps(data))
|