[pypy-commit] buildbot default: Give it a bit more time before timing out. Useful for

arigo noreply at buildbot.pypy.org
Fri Dec 9 18:35:03 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r599:83d6d146e64f
Date: 2011-12-09 18:34 +0100
http://bitbucket.org/pypy/buildbot/changeset/83d6d146e64f/

Log:	Give it a bit more time before timing out. Useful for very slow
	final "make" runs.

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -83,7 +83,7 @@
         add_args = {'translationArgs': translationArgs,
                     'targetArgs': targetArgs,
                     'interpreter': interpreter}
-        kw['timeout'] = 5400
+        kw['timeout'] = 7200
         ShellCmd.__init__(self, workdir, *a, **kw)
         self.addFactoryArguments(**add_args)
         self.command = ([interpreter] + self.command + translationArgs +


More information about the pypy-commit mailing list