diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-18 10:05:26 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-18 10:21:06 +0100 |
commit | 17534a6386e38ab9a5f312d734532354e8d17210 (patch) | |
tree | 35489e6310b9549a7f42df622c491252e64a99fb | |
parent | f3fcde318c79972408372972ec705d8584e07102 (diff) | |
download | jenkins.debian.net-17534a6386e38ab9a5f312d734532354e8d17210.tar.xz |
reproducible Debian: match output with reality and sleep an hour in case of diskspace issues
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 0fa21476..52f40d48 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -335,11 +335,11 @@ handle_remote_error() { handle_enospace() { unregister_build - MESSAGE="${BUILD_URL}console hit diskspace issues with $SRCPACKAGE on $SUITE/$ARCH on $1, sleeping 30m." + MESSAGE="${BUILD_URL}console hit diskspace issues with $SRCPACKAGE on $SUITE/$ARCH on $1, sleeping 60m." echo "$MESSAGE" echo "$MESSAGE" | mail -s "$JOB on $1 ran into diskspace problems" qa-jenkins-scm@lists.alioth.debian.org - echo "Sleeping 2h before aborting the job." - sleep 2h + echo "Sleeping 60m before aborting the job." + sleep 60m exec /srv/jenkins/bin/abort.sh exit 0 } |