diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-05-17 14:32:01 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-05-17 14:32:01 +0200 |
commit | bdf798ec88ebbf85a238073e77bdb1b9e9c0b653 (patch) | |
tree | 00377c823581b73433d158f979ac86de05f9569d | |
parent | 7d41664cb8debacdc4d84196a1f021c4bcce07a2 (diff) | |
download | jenkins.debian.net-bdf798ec88ebbf85a238073e77bdb1b9e9c0b653.tar.xz |
reproducible debian: add icons to status table in dashboard
-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 |