Message ID | 20241114114634.389679-1-richard.purdie@linuxfoundation.org |
---|---|
State | New |
Headers | show |
Series | [yocto-autobuilder-helper] send_qa_email: Filter to specific revision to avoid OE-Core commits | expand |
diff --git a/scripts/send_qa_email.py b/scripts/send_qa_email.py index 39e9382..15e0c62 100755 --- a/scripts/send_qa_email.py +++ b/scripts/send_qa_email.py @@ -188,7 +188,7 @@ def send_qa_email(): utils.printheader("Storing results") if not args.dry_run: - subprocess.check_call([resulttool, "store", args.results_dir, tempdir]) + subprocess.check_call([resulttool, "store", "--revision", revision, args.results_dir, tempdir]) if basebranch: subprocess.check_call(["git", "push", "--all", "--force"], cwd=tempdir) subprocess.check_call(["git", "push", "--tags", "--force"], cwd=tempdir)
Poky and OE-Core commits are being stored into the same branch of the test results repo which causes confusion. Filter these to poky and ignore the OE-Core result for now as the least bad option we have to avoid issues. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- scripts/send_qa_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)