From 3e72b400dca3096c57cfc78173fee9fffc102c2c Mon Sep 17 00:00:00 2001 From: kris Date: Mon, 8 Mar 2004 01:25:25 +0000 Subject: Increase timeout on slow build machines (alpha, sparc64) to 16 hours. This should probably be made a per-machine variable. --- Tools/portbuild/scripts/pdispatch | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Tools/portbuild') diff --git a/Tools/portbuild/scripts/pdispatch b/Tools/portbuild/scripts/pdispatch index 05be19ae01ce..8ed63f80fe95 100755 --- a/Tools/portbuild/scripts/pdispatch +++ b/Tools/portbuild/scripts/pdispatch @@ -11,8 +11,14 @@ shift . ${pb}/${arch}/portbuild.conf . ${pb}/scripts/buildenv -# wait 8 hours maximum -timeout=28800 +# Increase timeout on slow build machines +if [ "$arch" = "alpha" -o "$arch" = "sparc64" ]; then + # wait 16 hours maximum + timeout=57600 +else + # wait 8 hours maximum + timeout=28800 +fi branch=$1 command=$2 -- cgit