From 0fc5c330fea4b4129567aaa44ea5a134cb850bbb Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 20 Jun 2022 14:03:19 +0000 Subject: dashboard: show console output for successful patch tests Right now it's sent by email, but still not displayed on the web page. --- dashboard/app/templates.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html index 1ea3fbcad..bc3ae3ded 100644 --- a/dashboard/app/templates.html +++ b/dashboard/app/templates.html @@ -404,11 +404,10 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{if $job.ErrorLink}} {{link $job.ErrorLink "error"}} {{else if $job.LogLink}} - {{link $job.LogLink "log"}} + {{link $job.LogLink "job log"}} ({{if $job.Commit}}1{{else}}{{len $job.Commits}}{{end}}) {{else if $job.CrashTitle}} {{optlink $job.CrashReportLink "report"}} - {{optlink $job.CrashLogLink "log"}} {{else if formatTime $job.Finished}} OK {{else if formatTime $job.Started}} @@ -416,6 +415,9 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{else}} pending {{end}} + {{if $job.CrashLogLink}} + {{optlink $job.CrashLogLink "log"}} + {{end}} {{end}} -- cgit mrf-deployment