diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-04 01:03:04 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-04 01:03:04 +0200 |
commit | 230b7cdd4de3c2e9ccefea821881422bff0ecd39 (patch) | |
tree | d29092090ea4546430acce1d03684917d3acf2ab /bin | |
parent | 51090d60544ec7336c7e0250ff6eab43ad154605 (diff) | |
download | jenkins.debian.net-230b7cdd4de3c2e9ccefea821881422bff0ecd39.tar.xz |
reproducible: catch unknown diskspace issues too
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 805b9b45..7a26ea44 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -207,6 +207,12 @@ handle_ftbfs() { return 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" "$BASE/logs/$SUITE/$ARCH/${SRCPACKAGE}_${EVERSION}.build${BUILD}.log.gz" ; then + MESSAGE="$BUILD_URL for ${SRCPACKAGE} (ftbfs in $SUITE/$ARCH) very probably ran into an diskspace issue. Please investigate, tune handle_ftbfs() and reschedule the package." + echo $MESSAGE + irc_message "$MESSAGE" + fi done calculate_build_duration update_db_and_html "FTBFS" |