From: Tomeu Vizoso Date: Wed, 5 Aug 2020 09:56:06 +0000 (+0200) Subject: ci: Fix URL to imagediff page in traces dashboard X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=91cd7fe97848d8b57a90bea81c41306602cc1b32;p=mesa.git ci: Fix URL to imagediff page in traces dashboard It has been updated recently. Signed-off-by: Tomeu Vizoso Reviewed-by: Reviewed-By: Rohan Garg Part-of: --- diff --git a/.gitlab-ci/tracie/tracie.py b/.gitlab-ci/tracie/tracie.py index 2c96bf4ec7d..170400d9d54 100644 --- a/.gitlab-ci/tracie/tracie.py +++ b/.gitlab-ci/tracie/tracie.py @@ -158,12 +158,10 @@ def gitlab_check_trace(project_url, device_name, trace, expectation): (trace['path'], expectation['checksum'], checksum)) print("[check_image] For more information see " "https://gitlab.freedesktop.org/mesa/mesa/blob/master/.gitlab-ci/tracie/README.md") - image_diff_url = "%s/imagediff/%s/%s/%s/%s/%s" % (DASHBOARD_URL, - os.environ['CI_PROJECT_PATH'], - os.environ['CI_PIPELINE_ID'], - os.environ['CI_JOB_ID'], - expectation['checksum'], - checksum) + image_diff_url = "%s/imagediff/%s/%s/%s" % (DASHBOARD_URL, + os.environ['CI_PROJECT_PATH'], + os.environ['CI_JOB_ID'], + trace['path']) print("[check_image] %s" % image_diff_url) ok = False