In order to generate relevant regression reports, we need to use resulttool against taggued releases, which can be way older than the last five previous commits
Signed-off-by: Alexis Lothoré <[email protected]> --- scripts/send-qa-email | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/send-qa-email b/scripts/send-qa-email index d2f63dc..c2c5a4b 100755 --- a/scripts/send-qa-email +++ b/scripts/send-qa-email @@ -78,10 +78,10 @@ if 'poky' in repos and os.path.exists(resulttool) and args.results_dir: elif basebranch: cloneopts = ["--branch", basebranch] try: - subprocess.check_call(["git", "clone", "[email protected]:yocto-testresults", tempdir, "--depth", "5"] + cloneopts) + subprocess.check_call(["git", "clone", "[email protected]:yocto-testresults", tempdir] + cloneopts) except subprocess.CalledProcessError: print("No comparision branch found, falling back to master") - subprocess.check_call(["git", "clone", "[email protected]:yocto-testresults", tempdir, "--depth", "5"]) + subprocess.check_call(["git", "clone", "[email protected]:yocto-testresults", tempdir]) # If the base comparision branch isn't present regression comparision won't work # at least until we can tell the tool to ignore internal branch information -- 2.39.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#58977): https://lists.yoctoproject.org/g/yocto/message/58977 Mute This Topic: https://lists.yoctoproject.org/mt/96247369/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
