Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add extract_repos_subset.py script #594

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions jenkins-scripts/tools/extract_repos_subset.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#/usr/bin/env/python3
"""Extract a subset of repositories from a *.repos yaml file

This script loads a .repos yaml file and prints a yaml file
containing a subset of the repositories specified in the file.
"""
import argparse
import sys
import yaml

def main():

parser = argparse.ArgumentParser()

parser.add_argument('file', type=str,
help = 'Yaml repos file to extract from')
parser.add_argument('repo_names_to_extract', type=str, nargs='+')

args = parser.parse_args()

f = open(args.file, 'r')
y = yaml.load(f.read())
extracted_yaml = { 'repositories': {} }
extracted_repos = extracted_yaml['repositories']

for repo_name in args.repo_names_to_extract:
try:
extracted_repos[repo_name] = y['repositories'][repo_name]
except KeyError:
print(f"Error: could not find {repo_name} in {args.file}", file=sys.stderr)
print(yaml.dump(extracted_yaml))

# ------------------------------------------------
if __name__ == '__main__':
main()