diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-26 01:59:28 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-26 01:59:28 +0200 |
commit | b89f17e6b771b370422d3bc568944948fb2b3bd5 (patch) | |
tree | ee4ea3eaf36e872010638aadc9b2b5e7cccc3905 | |
parent | ab548f227dbb17dbeb96ef38db56e09d05ed0300 (diff) | |
download | jenkins.debian.net-b89f17e6b771b370422d3bc568944948fb2b3bd5.tar.xz |
Revert "reproducible: explain why sid is so broken atm"
This reverts commit 07a64c8e5474dae232408e64a7c2bf90bde2cb9f.
-rwxr-xr-x | bin/reproducible_html_dashboards.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/bin/reproducible_html_dashboards.sh b/bin/reproducible_html_dashboards.sh index a5f84054..68e71fb4 100755 --- a/bin/reproducible_html_dashboards.sh +++ b/bin/reproducible_html_dashboards.sh @@ -303,19 +303,14 @@ create_main_stats_page() { write_page_header $VIEW "Overview of various statistics about reproducible builds" # write suite table write_page "<p>" - write_page "<table class=\"main\"><tr><th>suite</th><th>all sources packages</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>other packages</th><th> </th></tr>" + write_page "<table class=\"main\"><tr><th>suite</th><th>all sources packages</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>other packages</th></tr>" for SUITE in $SUITES ; do gather_suite_arch_stats write_page "<tr><td>$SUITE</td><td>$AMOUNT" if [ $(echo $PERCENT_TOTAL/1|bc) -lt 98 ] ; then write_page "<span style=\"font-size:0.8em;\">($PERCENT_TOTAL% tested)</span>" fi - if [ "$SUITE" = "unstable" ] ; then - FINALLY_SID_AGAIN="Debian <em>unstable</em> is currently experiencing <a href=\"https://release.debian.org/transitions/html/libstdc++6.html\">a massive transition</a> and thus is currently quite broken, which is also shown by our current tests." - else - FINALLY_SID_AGAIN="" - fi - write_page "</td><td>$COUNT_GOOD / $PERCENT_GOOD%</td><td>$COUNT_BAD / $PERCENT_BAD%</td><td>$COUNT_UGLY / $PERCENT_UGLY%</td><td>$COUNT_OTHER / $PERCENT_OTHER%</td><td>$FINALLY_SID_AGAIN</td></tr>" + write_page "</td><td>$COUNT_GOOD / $PERCENT_GOOD%</td><td>$COUNT_BAD / $PERCENT_BAD%</td><td>$COUNT_UGLY / $PERCENT_UGLY%</td><td>$COUNT_OTHER / $PERCENT_OTHER%</td></tr>" done write_page "</table>" # write suite graphs |