summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-12-10 10:15:07 +0100
committerHolger Levsen <holger@layer-acht.org>2016-12-10 10:15:07 +0100
commit3b263372f730af7573b5ffe27921db4c7344df18 (patch)
treeedb11f98498811514331bbb018286d8d6c75b54e
parentfa2c1f3ed5daff102179f709a0ad33f789b72320 (diff)
downloadjenkins.debian.net-3b263372f730af7573b5ffe27921db4c7344df18.tar.xz
fixup 4c6071f36: reproducible Debian: ignore syslinux's false positive on 'no space left on device'
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-xbin/reproducible_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 157da9a9..f4046ff0 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -258,7 +258,7 @@ handle_ftbfs() {
done
# notify about unkown diskspace issues where we are not 100% sure yet those are diskspace issues
# 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
+ 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"