summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-10-08 13:46:18 +0200
committerHolger Levsen <holger@layer-acht.org>2014-10-08 13:46:18 +0200
commit3e606ea25323c3e90543cd24005ab22f6d7b4d44 (patch)
tree71e5236b4954280536ff73a3c138d1fb09c123da
parentc5ce95cc48100d52f828d1a2ce5e4c83cb042a38 (diff)
downloadjenkins.debian.net-3e606ea25323c3e90543cd24005ab22f6d7b4d44.tar.xz
reproducible: revert meaning of buildinfo signs
-rwxr-xr-xbin/reproducible_stats.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh
index ee1a4d72..fc1dc7ac 100755
--- a/bin/reproducible_stats.sh
+++ b/bin/reproducible_stats.sh
@@ -108,7 +108,7 @@ process_packages() {
VERSION=$(echo $RESULT|cut -d "|" -f2)
# remove epoch
EVERSION=$(echo $VERSION | cut -d ":" -f2)
- if $EXTRA_STAR && [ ! -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then
+ if $BUILDINFO_SIGNS && [ -f "/var/lib/jenkins/userContent/buildinfo/${PKG}_${EVERSION}_amd64.buildinfo" ] ; then
STAR[$PKG]="<font color=\"#333333\" size=\"-1\">&beta;</font>" # used to be a star...
fi
# only build $PKG pages if they don't exist or are older than $BUILD_DATE
@@ -194,9 +194,9 @@ publish_summary() {
}
echo "Processing $COUNT_TOTAL packages... this will take a while."
-EXTRA_STAR=true
+BUILDINFO_SIGNS=true
process_packages ${BAD["all"]}
-EXTRA_STAR=false
+BUILDINFO_SIGNS=false
process_packages ${UGLY["all"]} ${GOOD["all"]}
MAINVIEW="all_abc"
@@ -214,7 +214,6 @@ for VIEW in $ALLVIEWS ; do
write_summary "<p>$COUNT_BAD packages ($PERCENT_BAD% of $COUNT_TOTAL) failed to built reproducibly in total$FINISH <code>"
link_packages ${BAD[$VIEW]}
write_summary "</code></p>"
- write_summary "<p><font size=\"-1\">A &beta; sign after a package name indicates that no .buildinfo file was generated.</font></p>"
write_summary
write_summary "<p>$COUNT_UGLY packages ($PERCENT_UGLY%) failed to build from source in total$FINISH <code>"
link_packages ${UGLY[$VIEW]}
@@ -231,6 +230,7 @@ for VIEW in $ALLVIEWS ; do
write_summary "<p>$COUNT_GOOD packages ($PERCENT_GOOD%) successfully built reproducibly$FINISH <code>"
link_packages ${GOOD[$VIEW]}
write_summary "</code></p>"
+ write_summary "<p><font size=\"-1\">A &beta; sign after a package which is unreproducible indicates that no .buildinfo file was generated.</font></p>"
write_summary_footer
publish_summary
done