summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_graphs.sh
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-02-27 00:32:48 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-01 14:37:30 +0100
commitb85d08d121db51367cc79b551d8d939ceedcdf6b (patch)
treed818c986e3409499b69839128e3dc9ec1fea94db /bin/reproducible_html_graphs.sh
parentdcc27dc3cd9e6682c1b24a3fa0d8cc4ac5472659 (diff)
downloadjenkins.debian.net-b85d08d121db51367cc79b551d8d939ceedcdf6b.tar.xz
reproducible: move packages files under a suite-named directory, e.g. /rb-pkg/sid/
Diffstat (limited to 'bin/reproducible_html_graphs.sh')
-rwxr-xr-xbin/reproducible_html_graphs.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh
index 1c177726..c9912c73 100755
--- a/bin/reproducible_html_graphs.sh
+++ b/bin/reproducible_html_graphs.sh
@@ -15,6 +15,7 @@ init_html
gather_stats
SUITE="sid" # we only care about sid status here (for now)
+ARCH="amd64" # we only care about amd64 status here (for now)
#
# create stats
@@ -269,6 +270,7 @@ write_icon
write_page "$COUNT_NOTFORUS ($PERCENT_NOTFORUS%) packages which are neither Architecture: 'any', 'all', 'amd64', 'linux-any', 'linux-amd64' nor 'any-amd64' will not be build here"
write_page "and those "
set_icon blacklisted
+
write_icon
write_page "$COUNT_BLACKLISTED blacklisted packages neither.</p>"
write_page "<p>"
@@ -315,20 +317,20 @@ for i in $(seq 1 ${#META_PKGSET[@]}) ; do
set_icon reproducible
write_icon
write_page "$COUNT_META_GOOD packages ($PERCENT_META_GOOD%) successfully built reproducibly:"
- set_linktarget $META_GOOD
+ set_linktarget $SUITE $ARCH $META_GOOD
link_packages $META_GOOD
write_page "<br />"
set_icon unreproducible
write_icon
write_page "$COUNT_META_BAD ($PERCENT_META_BAD%) packages failed to built reproducibly:"
- set_linktarget $META_BAD
+ set_linktarget $SUITE $ARCH $META_BAD
link_packages $META_BAD
write_page "<br />"
if [ $COUNT_META_UGLY -gt 0 ] ; then
set_icon FTBFS
write_icon
write_page "$COUNT_META_UGLY ($PERCENT_META_UGLY%) packages failed to build from source:"
- set_linktarget $META_UGLY
+ set_linktarget $SUITE $ARCH $META_UGLY
link_packages $META_UGLY
write_page "<br />"
fi
@@ -340,7 +342,7 @@ for i in $(seq 1 ${#META_PKGSET[@]}) ; do
set_icon 404
write_icon
write_page "$COUNT_META_REST ($PERCENT_META_REST%) packages are either blacklisted, not for us or cannot be downloaded:"
- set_linktarget $META_REST
+ set_linktarget $SUITE $ARCH $META_REST
link_packages $META_REST
write_page "<br />"
fi