From 56bb0a7e59b9302122a64c00a07427b3757d04d1 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 11 Sep 2015 01:42:45 +0200 Subject: reproducible: drop date_scheduled from live_status --- bin/reproducible_html_live_status.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index 0ce5a14f..18ff9705 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -42,7 +42,7 @@ def generate_schedule(arch): def generate_live_status_table(arch): query = 'SELECT s.id, s.name, s.version, s.suite, s.architecture, ' + \ - 'p.scheduler, p.date_scheduled, p.date_build_started, ' + \ + 'p.scheduler, 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 != "") AND s.architecture="{arch}" ' + \ @@ -52,7 +52,7 @@ def generate_live_status_table(arch): html += '

\n' + tab html += '' html += '' - html += '' + html += '' html += '' html += '\n' counter = 0 @@ -60,7 +60,7 @@ def generate_live_status_table(arch): counter += 1 # the numbers 16 and 7 should really be derived from /var/lib/jenkins/jobs/reproducible_builder_${arch}_* instead of being hard-coded here... if ( arch == 'amd64' and counter == 16 ) or ( arch == 'armhf' and counter == 7 ): - html += '' + html += '' pkg = row[1] arch = row[4] suite = row[3] @@ -70,7 +70,7 @@ def generate_live_status_table(arch): html += '' html += '' html += '' - html += '' + html += '' html += '\n' html += '
#src pkg idnameversionsuitearchscheduled byscheduled onbuild startedstatusbuild startedprevious build statusversion buildingprevious build durationbuilder jobnotify
There are more builds marked as currently building in the database than there are ' + arch + ' build jobs. This does not compute. Please cleanup and please automate cleanup.
There are more builds marked as currently building in the database than there are ' + arch + ' build jobs. This does not compute. Please cleanup and please automate cleanup.
' + str(row[2]) + '' + str(row[3]) + '' + str(row[4]) + '' + str(row[5]) + '' + str(row[6]) + '' + str(row[7]) + '' + str(row[8]) + '' + str(row[9]) + '' + str(row[10]) + '' + str(row[11]) + '' + str(row[12]) + '' + str(row[10]) + '' + str(row[11]) + '

\n' return html -- cgit v1.2.3-70-g09d2