X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fsystem-tests%2Flava2-submit.py;h=fd573af19ba2bf0664492125ac08a8ad379cbf11;hb=ef50ca2a58c45158ad69f5e1e893aea4766464f4;hp=232be5d43bb72016c08e5012bfe2d4702b9627c1;hpb=6f3cac9a581eb66e96b9baeb31f1d5e40a6419d9;p=lttng-ci.git diff --git a/scripts/system-tests/lava2-submit.py b/scripts/system-tests/lava2-submit.py index 232be5d..fd573af 100644 --- a/scripts/system-tests/lava2-submit.py +++ b/scripts/system-tests/lava2-submit.py @@ -199,6 +199,8 @@ def main(): '-r', '--rootfs-url', required=False, default="https://obj.internal.efficios.com/lava/rootfs/rootfs_amd64_xenial_2018-12-05.tar.gz" ) + parser.add_argument('--ci-repo', required=False, default='https://github.com/lttng/lttng-ci.git') + parser.add_argument('--ci-branch', required=False, default='master') args = parser.parse_args() if args.type not in TestType.values: @@ -265,6 +267,9 @@ def main(): context['kprobe_round_nb'] = 10 + context['ci_repo'] = args.ci_repo + context['ci_branch'] = args.ci_branch + render = jinja_template.render(context) print('Job to be submitted:')