Skip to content
Snippets Groups Projects
Commit 51a40c40 authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible Debian: do not wrongly detect diskspace issues on openssl builds

parent 24aac701
No related branches found
No related tags found
No related merge requests found
......@@ -258,8 +258,8 @@ handle_ftbfs() {
fi
done
# notify about unkown diskspace issues where we are not 100% sure yet those are diskspace issues
# ignore syslinux, clisp, klibc and glibc which are false positives…
if zgrep -e "No space left on device" "$DEBIAN_BASE/logs/$SUITE/$ARCH/${SRCPACKAGE}_${EVERSION}.build${BUILD}.log.gz" && [ "$SRCPACKAGE" != "syslinux" ] && [ "$SRCPACKAGE" != "clisp" ] && [ "$SRCPACKAGE" != "klibc" ] && [ "$SRCPACKAGE" != "glibc" ]; then
# ignore syslinux, clisp, klibc, openssl and glibc which are false positives…
if zgrep -e "No space left on device" "$DEBIAN_BASE/logs/$SUITE/$ARCH/${SRCPACKAGE}_${EVERSION}.build${BUILD}.log.gz" && [ "$SRCPACKAGE" != "syslinux" ] && [ "$SRCPACKAGE" != "clisp" ] && [ "$SRCPACKAGE" != "klibc" ] && [ "$SRCPACKAGE" != "openssl" ] && [ "$SRCPACKAGE" != "glibc" ]; then
MESSAGE="${BUILD_URL}console.log 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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment