ci: Fix URL to imagediff page in traces dashboard

It has been updated recently.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Reviewed-by: Reviewed-By: Rohan Garg <rohan.garg@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6185>
This commit is contained in:
Tomeu Vizoso
2020-08-05 11:56:06 +02:00
parent 922217431c
commit 91cd7fe978

View File

@@ -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