summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_breakages.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-01-12 16:58:24 +0100
committerHolger Levsen <holger@layer-acht.org>2017-01-12 16:58:24 +0100
commite6457deea88eba78e2e946eee7b73f441ab9da04 (patch)
tree08760e56ad0675c4caae254180d21d7231c4818e /bin/reproducible_html_breakages.py
parent8d6e5ffe3c443ab2a7b39acc736c262fb9232cb5 (diff)
downloadjenkins.debian.net-e6457deea88eba78e2e946eee7b73f441ab9da04.tar.xz
reproducible Debian: restructure output
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_html_breakages.py')
-rwxr-xr-xbin/reproducible_html_breakages.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py
index e827aeb4..69c4dafe 100755
--- a/bin/reproducible_html_breakages.py
+++ b/bin/reproducible_html_breakages.py
@@ -354,6 +354,9 @@ def gen_html():
lack_rbuild())
html += _gen_packages_html('have been built but don\'t have a .buildinfo file:',
lack_buildinfo())
+ # pbuilder-satisfydepends failed
+ html += _gen_packages_html('failed to satisfy their build-dependencies:',
+ pbuilder_dep_fail())
# diffoscope troubles
without_dbd, bad_dbd, sources_without_dbd = unrep_with_dbd_issues()
html += _gen_packages_html('are marked as unreproducible, but there is no ' +
@@ -367,14 +370,12 @@ def gen_html():
html += ' source packages on which diffoscope ran into a timeout ('
html += str(count_pkgs(bad_dbd)) + ') or crashed ('
html += str(count_pkgs(without_dbd)) + ').'
- html += '<br/> <a href="https://tests.reproducible-builds.org/debian/artifacts/">Artifacts diffoscope crashed</a> on are available for 48h for download.'
- # pbuilder-satisfydepends failed
- html += _gen_packages_html('failed to satisfy their build-dependencies:',
- pbuilder_dep_fail())
# gather stats and add graph
update_stats_breakages(count_pkgs(bad_dbd), count_pkgs(without_dbd))
create_breakages_graph
html += '<br> <a href="/debian/stats_breakages.png"><img src="/debian/stats_breakages.png" alt="source packages causing Diffoscope to timeout and crash"></a>'
+ # link artifacts
+ html += '<br/> <a href="https://tests.reproducible-builds.org/debian/artifacts/">Artifacts diffoscope crashed</a> on are available for 48h for download.'
return html