summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-09-23 22:58:35 +0000
committerHolger Levsen <holger@layer-acht.org>2014-09-23 22:58:35 +0000
commite87fe7be08cb07a481c200802bbe4f93053506fd (patch)
tree35663ffd99f129b412e3c8dc122cd8daf873caf9 /bin/reproducible_build.sh
parent67a9f9997a82a61b0ecdd65e1240ea86d1686451 (diff)
downloadjenkins.debian.net-e87fe7be08cb07a481c200802bbe4f93053506fd.tar.xz
reproducible: misc fixes. new job: build-essential.
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 6a5f8b3e..0244ee14 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -31,7 +31,6 @@ for PACKAGE in "$@" ; do
dcmd cp /var/cache/pbuilder/result/${PACKAGE}_*.changes b2
sudo dcmd rm /var/cache/pbuilder/result/${PACKAGE}_*.changes
cat b1/${PACKAGE}_*.changes
-
TMPFILE=$(mktemp)
./misc.git/diffp b1/*.changes b2/*.changes | tee ${TMPFILE}
if $(grep -qv '^\*\*\*\*\*' ${TMPFILE}) ; then
@@ -45,10 +44,15 @@ for PACKAGE in "$@" ; do
let "COUNT_BAD=COUNT_BAD+1"
GOOD="${PACKAGE} ${BAD}"
fi
-
rm b1 b2 ${TMPFILE} -rf
+
+ echo "=============================================================="
+ echo "$COUNT_TOTAL of ${#@} done."
+ echo "=============================================================="
done
+set +x
+echo
echo
echo "$COUNT_TOTAL packages attempted to build in total."
echo "$COUNT_GOOD packages successfully built reproducible: ${GOOD}"