diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-27 15:17:22 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-27 15:17:22 +0200 |
commit | 83b5b0b7db5c6038f5ff3ac6f5648b1ea2b5072a (patch) | |
tree | ad32f35f07dfc5d66a5833c3613807e0a0309392 /bin/reproducible_html_live_status.py | |
parent | 7774df5869cf1fa6ac649ed5576b17aa64b0314e (diff) | |
download | jenkins.debian.net-83b5b0b7db5c6038f5ff3ac6f5648b1ea2b5072a.tar.xz |
reproducible Debian: correctly link to new build logs
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-x | bin/reproducible_html_live_status.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index b9a26824..6e56b9de 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -155,11 +155,7 @@ def generate_live_status_table(arch): html += '<td><code>' + link_package(pkg, suite, arch) + '</code></td>' html += '<td>' + str(row[4]) + '</td><td>' + str(row[5]) + '</td>' html += '<td>' + convert_into_status_html(str(row[6])) + '</td><td>' + duration + '</td><td>' + avg_duration + '</td>' - # we temporarily have two types of builders… - if arch in ('i386'): - html += '<td><a href="https://jenkins.debian.net/userContent/reproducible/debian/build_service/' + str(row[9]) + '/console">' + str(row[9]) + '</a></td>' - else: - html += '<td><a href="https://jenkins.debian.net/job/reproducible_builder_' + str(row[9]) + '/console">' + str(row[9]) + '</a></td>' + html += '<td><a href="https://jenkins.debian.net/userContent/reproducible/debian/build_service/' + str(row[9]) + '/console">' + str(row[9]) + '</a></td>' html += '</tr>\n' html += '</table></p>\n' return html |