From aa2ace2f2d0db1eeebe565643855685bcc9f6114 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 16 Nov 2019 10:18:47 +0100 Subject: [PATCH] reproducible Debian: display newer suites first (on pages showing oldest build results) Signed-off-by: Holger Levsen --- bin/reproducible_html_live_status.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index 42bc0139..e10dd8ed 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- coding: utf-8 -*- # -# Copyright © 2015-2017 Holger Levsen +# Copyright © 2015-2019 Holger Levsen # © 2018 Mattia Rizzolo # based on ~jenkins.d.n:~mattia/status.sh by Mattia Rizzolo # Licensed under GPL-2 @@ -166,7 +166,7 @@ def generate_oldies(arch): log.info('Building the oldies page for ' + arch + '...') title = 'Oldest results on ' + arch html = '' - for suite in SUITES: + for suite in reversed(SUITES): query = select([ sources.c.suite, sources.c.architecture, -- GitLab