summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-09-30 10:15:45 +0200
committerHolger Levsen <holger@layer-acht.org>2014-09-30 10:15:45 +0200
commit9d864fba62cc7a35a8640df6b355e9e0a2c8935d (patch)
tree86f63e6712c1af576c23dae57fb09ce019802841 /bin/reproducible_build.sh
parent2727e9d49fcb0a95fb8fc941cbd50d71668cbfc2 (diff)
downloadjenkins.debian.net-9d864fba62cc7a35a8640df6b355e9e0a2c8935d.tar.xz
reproducible: use better markers to find text
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh16
1 files changed, 9 insertions, 7 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index e2cc2ad6..6c3fe696 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -115,12 +115,10 @@ else
fi
done
fi
-echo
-echo "=============================================================="
+echo "============================================================================="
echo "The following source packages will be build: ${PACKAGES}"
-echo "=============================================================="
+echo "============================================================================="
echo
-set -x
NUM_CPU=$(cat /proc/cpuinfo |grep ^processor|wc -l)
COUNT_TOTAL=0
@@ -132,6 +130,10 @@ BAD=""
SOURCELESS=""
SKIPPED=""
for SRCPACKAGE in ${PACKAGES} ; do
+ echo "============================================================================="
+ echo "Trying to build ${SRCPACKAGE} reproducibly now."
+ echo "============================================================================="
+ set -x
let "COUNT_TOTAL=COUNT_TOTAL+1"
rm b1 b2 -rf
set +e
@@ -203,9 +205,9 @@ for SRCPACKAGE in ${PACKAGES} ; do
fi
set +x
- echo "=============================================================="
- echo "$COUNT_TOTAL of $AMOUNT done."
- echo "=============================================================="
+ echo "============================================================================="
+ echo "$COUNT_TOTAL of $AMOUNT done. Previous package: ${SRCPACKAGE}"
+ echo "============================================================================="
set -x
done