diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-08 13:17:18 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-08 13:17:18 +0200 |
commit | bd56fb560d10fc5cc7756d050120f169f3f4d872 (patch) | |
tree | 2cb503638ee41d1670603bc133cf450c06e3c7fd /bin | |
parent | b88db8812c258fb4bbf2844e3795b35d638aafdd (diff) | |
download | jenkins.debian.net-bd56fb560d10fc5cc7756d050120f169f3f4d872.tar.xz |
reproducible: live status needs to know the number of builders
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_live_status.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index e1a3d8c2..685fb97b 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -82,8 +82,8 @@ def generate_live_status_table(arch): counter = 0 for row in rows: counter += 1 - # the numbers 17 and 9 should really be derived from /var/lib/jenkins/jobs/reproducible_builder_${arch}_* instead of being hard-coded here... - if ( arch == 'amd64' and counter == 17 ) or ( arch == 'armhf' and counter == 9 ): + # the numbers 33 and 9 should really be derived from /var/lib/jenkins/jobs/reproducible_builder_${arch}_* instead of being hard-coded here... + if ( arch == 'amd64' and counter == 33 ) or ( arch == 'armhf' and counter == 9 ): html += '<tr><td colspan="10">There are more builds marked as currently building in the database than there are ' + arch + ' build jobs. This does not compute, please investigate and fix the cause.</td></tr>' suite = row[1] arch = row[2] |