summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-12-09 16:53:57 +0100
committerHolger Levsen <holger@layer-acht.org>2016-12-09 16:53:57 +0100
commit4c6071f363cdf74220a451d2e4dabbc11c2a554a (patch)
tree8c5cdf9a6b41ed16fa75bbd6021c4adb09546f27 /bin
parent908faa58f14fdd762fc76af9adc7df1da568d706 (diff)
downloadjenkins.debian.net-4c6071f363cdf74220a451d2e4dabbc11c2a554a.tar.xz
reproducible Debian: ignore syslinux's false positive on 'no space left on device'
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 7a285703..157da9a9 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -257,7 +257,8 @@ handle_ftbfs() {
fi
done
# notify about unkown diskspace issues where we are not 100% sure yet those are diskspace issues
- if zgrep -e "No space left on device" "$DEBIAN_BASE/logs/$SUITE/$ARCH/${SRCPACKAGE}_${EVERSION}.build${BUILD}.log.gz" ; then
+ # ignore syslinux, which is a false positive…
+ if zgrep -e "No space left on device" "$DEBIAN_BASE/logs/$SUITE/$ARCH/${SRCPACKAGE}_${EVERSION}.build${BUILD}.log.gz" && [ "SRCPACKAGE" != "syslinux" ] ; then
MESSAGE="${BUILD_URL}console for ${SRCPACKAGE} (ftbfs in $SUITE/$ARCH) _probably_ had a diskspace issue on $node. Please check, tune handle_ftbfs() and reschedule the package."
echo $MESSAGE | tee -a /var/log/jenkins/reproducible-diskspace-issues.log
irc_message debian-reproducible "$MESSAGE"