send-qa-email: Be specific about which test result branches to push

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2019-02-23 22:53:50 +00:00
parent f19aa61cd6
commit 2deb018441

View File

@ -61,7 +61,7 @@ if 'poky' in repos and os.path.exists(resulttool) and args.results_dir:
try: try:
subprocess.check_call(["git", "clone", "git@git.yoctoproject.org:yocto-testresults", tempdir]) subprocess.check_call(["git", "clone", "git@git.yoctoproject.org:yocto-testresults", tempdir])
subprocess.check_call([resulttool, "store", args.results_dir, tempdir]) subprocess.check_call([resulttool, "store", args.results_dir, tempdir])
subprocess.check_call(["git", "push"], cwd=tempdir) subprocess.check_call(["git", "push", "--all"], cwd=tempdir)
subprocess.check_call(["git", "push", "--tags"], cwd=tempdir) subprocess.check_call(["git", "push", "--tags"], cwd=tempdir)
regreport = subprocess.check_output([resulttool, "regression-git", tempdir] + extraopts.split()) regreport = subprocess.check_output([resulttool, "regression-git", tempdir] + extraopts.split())