diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-07 20:49:16 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-07 20:49:16 +0200 |
commit | 07a64c8e5474dae232408e64a7c2bf90bde2cb9f (patch) | |
tree | 3c9fbfdc27c2c82543dbdd325a221c45a8f7eb99 /bin | |
parent | 09391a8b9b270829df1bf142d40b036eb22a1cbb (diff) | |
download | jenkins.debian.net-07a64c8e5474dae232408e64a7c2bf90bde2cb9f.tar.xz |
reproducible: explain why sid is so broken atm
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_dashboards.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/reproducible_html_dashboards.sh b/bin/reproducible_html_dashboards.sh index 8db4dbb3..01687dc7 100755 --- a/bin/reproducible_html_dashboards.sh +++ b/bin/reproducible_html_dashboards.sh @@ -305,14 +305,19 @@ 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></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><th> </th></tr>" for SUITE in $SUITES ; do gather_suite_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 - 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>" + 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>" done write_page "</table>" # write suite graphs |