summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-09-13 16:35:27 +0200
committerHolger Levsen <holger@layer-acht.org>2017-09-13 16:35:27 +0200
commit6eb52d04bc077bb45ca568c4dac49efeceb9bf8b (patch)
tree50c6f4cd57227e8fc869d4a809fa7b03a4e9d101 /bin/reproducible_build.sh
parent4b14a85d1f484958e0dbbfd05cd275b819d92618 (diff)
downloadjenkins.debian.net-6eb52d04bc077bb45ca568c4dac49efeceb9bf8b.tar.xz
reproducible Debian: allow maximum of 30min for diffing the two build logs
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index c252664b..96acd93d 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -179,9 +179,12 @@ diff_copy_buildlogs() {
if [ -f b1/build.log ] ; then
if [ -f b2/build.log ] ; then
printf "Diff of the two buildlogs:\n\n--\n" | tee -a $DIFF
- diff -u b1/build.log b2/build.log | tee -a $DIFF
+ LOCALDIFFTIMEOUT="30m"
+ timeout $LOCALDIFFTIMEOUT diff -u b1/build.log b2/build.log | tee -a $DIFF
if [ ${PIPESTATUS[0]} -eq 0 ] ; then
echo "The two build logs are identical! \o/" | tee -a $DIFF
+ elif [ ${PIPESTATUS[0]} -eq 124 ] ; then
+ echo "Diffing the two build logs ran into timeout after $LOCALDIFFTIMEOUT, sorry." | tee -a $DIFF
fi
echo -e "\nCompressing the 2nd log..."
gzip -9vn $DIFF