summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_live_status.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-10 22:12:51 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-10 22:12:51 +0200
commit6a709d2382d6e73fa76b4a39e38ef844465ea2e2 (patch)
tree39f836d948073ed09c654999ad96f0f5eabf4347 /bin/reproducible_html_live_status.py
parent1ac01039962d34c1adeb90837069c8012386c478 (diff)
downloadjenkins.debian.net-6a709d2382d6e73fa76b4a39e38ef844465ea2e2.tar.xz
reproducible: make live_status.html work nicely and run it every minute
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-xbin/reproducible_html_live_status.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py
index 3a899a58..d9f74880 100755
--- a/bin/reproducible_html_live_status.py
+++ b/bin/reproducible_html_live_status.py
@@ -15,37 +15,37 @@ def generate_live_status():
log.info('Building live status page...')
title = 'Live status of reproducible.debian.net'
query = 'SELECT s.id, s.name, s.version, s.suite, s.architecture AS arch, ' + \
- 'p.scheduler, p.date_scheduled as "scheduled on", p.date_build_started AS "build started on", ' + \
- 'r.status, r.version, r.build_duration AS 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.scheduler != "" OR p.date_build_started != "" OR p.notify != ""' + \
- 'ORDER BY date_scheduled desc;'
+ 'p.scheduler, p.date_scheduled AS "scheduled on", p.date_build_started AS "build started on", ' + \
+ 'r.status, r.version, r.build_duration AS 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 != "" ' + \
+ 'ORDER BY p.date_build_started, date_scheduled DESC'
html = ''
rows = query_db(query)
- html += '<p><table class="scheduled">\n' + tab
+ html += '<p>If there are more than 21 rows shown here, the list includes stale builds... we\'re working on it. Stay tuned.<table class="scheduled">\n' + tab
html += '<tr><th>#</th><th>src pkg id</th><th>name</th><th>version</th>'
html += '<th>suite</th><th>arch</th><th>scheduled by</th>'
html += '<th>scheduled on</th><th>build started</th><th>status</th>'
- html += '<tr><th>version building</th><th>previous build duration</th><th>builder job</th><th>notify</th>'
+ html += '<th>version building</th><th>previous build duration</th><th>builder job</th><th>notify</th>'
html += '</tr>\n'
for row in rows:
pkg = row[1]
arch = row[4]
suite = row[3]
- html += tab + '<tr><td>&nbsp;</td><td>' + row[0] + '</td>'
+ html += tab + '<tr><td>&nbsp;</td><td>' + str(row[0]) + '</td>'
html += '<td><code>'
html += link_package(pkg, suite, arch)
- html += '</code></td>'
- html += '<td>' + row[1] + '</td><td>' + row[2] + '</td><td>' + row[3] + '</td>'
- html += '<td>' + row[4] + '</td><td>' + row[5] + '</td><td>' + row[6] + '</td>'
- html += '<td>' + row[7] + '</td><td>' + row[8] + '</td><td>' + row[9] + '</td>'
- html += '<td>' + row[10] + '</td><td>' + row[11] + '</td><td>' + row[12] + '</td>'
+ html += '</code></td><td>' + str(row[2]) + '</td><td>' + str(row[3]) + '</td>'
+ html += '<td>' + str(row[4]) + '</td><td>' + str(row[5]) + '</td><td>' + str(row[6]) + '</td>'
+ html += '<td>' + str(row[7]) + '</td><td>' + str(row[8]) + '</td><td>' + str(row[9]) + '</td>'
+ html += '<td>' + str(row[10]) + '</td><td><a href="https://jenkins.debian.net/job/reproducible_builder_' + str(row[11]) + '/console">' + str(row[11]) + '</a></td><td>' + str(row[12]) + '</td>'
html += '</tr>\n'
html += '</table></p>\n'
destfile = BASE + '/live_status.html'
desturl = REPRODUCIBLE_URL + '/live_status.html'
write_html_page(title=title, body=html, destfile=destfile, style_note=True)
+ log.info("Package page generated at " + desturl)
if __name__ == '__main__':
- generate_live_status
+ generate_live_status()