diff options
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index b0b0768a..1c5aeddd 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -354,7 +354,25 @@ write_suite_arch_table() { local SUITE="" local ARCH="" 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>packages in depwait state</th><th>not for this architecture</th><th>blacklisted</th></tr>" + write_page "<table class=\"main\"><tr><th>suite</th><th>all sources packages</th><th>" + set_icon reproducible + write_icon + write_page "reproducible packages</th><th>" + set_icon unreproducible + write_icon + write_page "unreproducible packages</th><th>" + set_icon FTBFS + write_icon + write_page "packages failing to build</th><th>" + set_icon depwait + write_icon + write_page "packages in depwait state</th><th>" + set_icon not_for_us + write_icon + write_page "not for this architecture</th><th>" + set_icon blacklisted + write_icon + write_page "blacklisted</th></tr>" for SUITE in $SUITES ; do for ARCH in ${ARCHS} ; do gather_suite_arch_stats |