This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository fateserver.
commit f1f5611f6bd3ea19a1abd738237068cc2fd35223 Author: Kacper Michajłow <[email protected]> AuthorDate: Thu Aug 13 00:29:15 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Thu Aug 13 00:36:21 2026 +0200 index: sort by result first The failures are the most interesting thing on the status page, so put failed jobs at the top. This puts `result` as first in fallback sort list. So it will be used by default and as a tie-breaker for explicit sort. Signed-off-by: Kacper Michajłow <[email protected]> --- index.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.cgi b/index.cgi index f41d507..e585c4e 100755 --- a/index.cgi +++ b/index.cgi @@ -119,7 +119,7 @@ $allpass = pct($allpass, $nreps); $allfail = pct($allfail, $nreps); $warn = pct($warn, $nreps); -my @sort = ('subarch', 'os', 'cc', 'comment', 'slot'); +my @sort = ('result', 'subarch', 'os', 'cc', 'comment', 'slot'); defined $sort and unshift @sort, split /\/\//, $sort; $sort ||= $sort[0]; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
