From efc7c3ec0f837eabe430a966da82672ab28c0f32 Mon Sep 17 00:00:00 2001 From: Khouloud Touil Date: Fri, 12 Apr 2019 17:39:17 +0200 Subject: Modify the releng-scripts to deal with branches and dtb names This patch takes the branch and machine arguments and decide which is the dtb name to be used. Change-Id: I09bd67de51920c81780a77be396906a15d8247f5 Signed-off-by: Khouloud Touil --- utils/agljobtemplate.py | 9 ++++++++- utils/job-prereq.py | 10 ++++++---- 2 files changed, 14 insertions(+), 5 deletions(-) (limited to 'utils') diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py index e79db41..0dcafb5 100644 --- a/utils/agljobtemplate.py +++ b/utils/agljobtemplate.py @@ -50,6 +50,7 @@ class Agljobtemplate(object): DEFAULT_PATH = "templates" CALLBACK_DIR = "callback" MACHINES_DIR = "machines" + MACHINES_BRANCH_DIR = "machines-branch" TESTS_DIR = "tests" RFS_TYPE = ['nbd', 'ramdisk'] @@ -207,6 +208,12 @@ class Agljobtemplate(object): env = jinja2.Environment(loader=jinja2.FileSystemLoader(self._template_path)) env.filters['get_extension'] = get_extension - template = env.get_template(os.path.join(self.MACHINES_DIR, machine + ".jinja2")) + + machine_branch = machine + '-' + vcs_branch + '.jinja2' + + if machine_branch in os.listdir(os.path.join(self._template_path, self.MACHINES_DIR, self.MACHINES_BRANCH_DIR)): + template = env.get_template(os.path.join(self.MACHINES_DIR, self.MACHINES_BRANCH_DIR, machine_branch)) + else: + template = env.get_template(os.path.join(self.MACHINES_DIR, machine + ".jinja2")) return template.render(job) diff --git a/utils/job-prereq.py b/utils/job-prereq.py index 1beec81..5ea745b 100755 --- a/utils/job-prereq.py +++ b/utils/job-prereq.py @@ -41,6 +41,8 @@ def parse_cmdline(machines): nargs=3, help="The type of build. It defines the URL to upload to.", required=True) + parser.add_argument('--branch', dest='vcs_branch', action='store', default='master', + help='The build branch.') args = parser.parse_args() return args @@ -54,12 +56,12 @@ def main(): job = ajt.render_job(build_type=args.build_type[0], changeid=args.build_type[1], patchset=args.build_type[2], - machine=args.machine) + machine=args.machine, vcs_branch=args.vcs_branch) else: job = ajt.render_job(build_type=args.build_type[0], - vcs_branch=args.build_type[1], - version=args.build_type[2], - machine=args.machine) + vcs_branch=args.vcs_branch, + version=args.build_type[2], + machine=args.machine) job_yaml = yaml.load(job) if args.machine == "qemux86-64": -- cgit 1.2.3-korg