From a159ea06f6f2416beda727a4886179fbfbda40e7 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Tue, 19 Apr 2016 09:02:05 -0700 Subject: [PATCH] Zuul status: Link to logs.o.o on completed builds Change-Id: I8af0fbe82acadc0e3c05bc5164eca5a318706023 Depends-On: Ida811e2b097a32b8d560aad8a0b18c8048a36279 --- modules/openstack_project/templates/zuul/status.js.erb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/openstack_project/templates/zuul/status.js.erb b/modules/openstack_project/templates/zuul/status.js.erb index 9067b2911f..280624a166 100644 --- a/modules/openstack_project/templates/zuul/status.js.erb +++ b/modules/openstack_project/templates/zuul/status.js.erb @@ -332,7 +332,13 @@ function format_change(change, change_queue) { result_class += " result_unstable"; } html += ''; + if (job['result'] !== null && job['report_url'] !== null) { + html += ''; + } html += job['name']; + if (job['result'] !== null && job['report_url'] !== null) { + html += ''; + } html += ': '; if (job['result'] === null && job['url'] !== null) { html += format_progress(job['elapsed_time'], job['remaining_time']);