From b312278bc5a8b764f66f40307d83e7b4e31ef3b9 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 11 Sep 2015 01:13:39 +0200 Subject: reproducible: make generate_live_status() arch aware --- bin/reproducible_html_live_status.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin/reproducible_html_live_status.py') diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index 98bf3b23..8d6ea072 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -39,7 +39,7 @@ def generate_schedule(arch): log.info("Page generated at " + desturl) -def generate_live_status(): +def generate_live_status(arch): """ the schedule pages are very different than others index pages """ log.info('Building live status page...') title = 'Live status of reproducible.debian.net' @@ -47,10 +47,10 @@ def generate_live_status(): 'p.scheduler, p.date_scheduled, p.date_build_started, ' + \ 'r.status, r.version, r.build_duration, p.builder, p.notify ' + \ 'FROM sources AS s JOIN schedule AS p ON p.package_id=s.id LEFT JOIN results AS r ON s.id=r.package_id ' + \ - 'WHERE p.date_build_started != "" OR p.notify != "" ' + \ + 'WHERE (p.date_build_started != "" OR p.notify != "") AND s.architecture="{arch}" ' + \ 'ORDER BY p.date_build_started DESC' html = '' - rows = query_db(query) + rows = query_db(query.format(arch=arch)) html += '

If there are more than 21 rows shown here, the list includes stale builds... we\'re working on it. Stay tuned.\n' + tab html += '' html += '' @@ -76,7 +76,7 @@ def generate_live_status(): log.info("Page generated at " + desturl) if __name__ == '__main__': - generate_live_status() + generate_live_status("*") for arch in ARCHS: generate_schedule(arch) -- cgit v1.2.3-54-g00ecf
#src pkg idnameversionsuitearchscheduled by