summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-10-03 17:55:56 +0200
committerHolger Levsen <holger@layer-acht.org>2015-10-03 17:55:56 +0200
commitd5942a13faa8e598e242c79b893d01cb9dcbb6cc (patch)
treecfe8d873febe38f95ed35a081837fca69cd9a05f /bin
parent8da840c8198b5380b01bd3686fd04c2dfa2a5dff (diff)
downloadjenkins.debian.net-d5942a13faa8e598e242c79b893d01cb9dcbb6cc.tar.xz
reproducible: fix typo and only sleep 30m on out-of-space problems
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 35fb0e23..4f62b099 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -264,7 +264,7 @@ handle_unhandled() {
unregister_build
MESSAGE="$BUILD_URL met an unhandled $1, please investigate."
echo "$MESSAGE"
- irc_msg "$MESSAGE"
+ irc_message "$MESSAGE"
sleep 5m
exec /srv/jenkins/bin/abort.sh
exit 0
@@ -272,11 +272,11 @@ handle_unhandled() {
handle_enospace() {
unregister_build
- MESSAGE="$BUILD_URL ran into diskspace problems, please investigate. Will send this builder to sleep for 3h now."
+ MESSAGE="$BUILD_URL ran into diskspace problems, please investigate. Will send this builder to sleep for 30m now."
echo "$MESSAGE"
echo "$MESSAGE" | mail -s "$BUILD_URL ran into diskspace problems" qa-jenkins-scm@lists.alioth.debian.org
- irc_msg "$MESSAGE"
- sleep 3h
+ irc_message "$MESSAGE"
+ sleep 30m
exec /srv/jenkins/bin/abort.sh
exit 0
}