diff options
author | Kevin Hilman <khilman@baylibre.com> | 2017-10-04 16:48:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2017-10-04 16:48:05 +0000 |
commit | 06c31d6239b59feb4337a7995edd771838fb2277 (patch) | |
tree | d74cdbdf100b14fa09ce174247b892060dc36e33 /utils/agljobtemplate.py | |
parent | 785b598fe473fef76714599ce4e6d0d9a5ca4c69 (diff) | |
parent | 7341f3c6b12d36dcd0dc1c2807759fe2297ee730 (diff) |
Merge "Add build_version command line option"
Diffstat (limited to 'utils/agljobtemplate.py')
-rw-r--r-- | utils/agljobtemplate.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py index 0d34867..c8edc8e 100644 --- a/utils/agljobtemplate.py +++ b/utils/agljobtemplate.py @@ -60,7 +60,7 @@ class Agljobtemplate(object): return self.RFS_TYPE def render_job(self, url, machine, job_name="AGL-short-smoke", priority="medium", tests=[], rfs_type=None, - kci_callback=None, rfs_image=None): + kci_callback=None, rfs_image=None, build_version=None): test_templates = [] if machine not in self.machines: @@ -80,6 +80,9 @@ class Agljobtemplate(object): job['urlbase'] = url job['test_templates'] = test_templates + if build_version is not None: + job['kernel_version'] = build_version + if rfs_type is not None: job['rootfs_type'] = rfs_type |