[pypy-commit] buildbot default: halt if translate.py fails (this was a leftover of some experiments); also, try to increase the number of available CPUs

antocuni noreply at buildbot.pypy.org
Sat Jul 30 10:53:50 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r543:bdad3c3b23ef
Date: 2011-07-30 10:54 +0200
http://bitbucket.org/pypy/buildbot/changeset/bdad3c3b23ef/

Log:	halt if translate.py fails (this was a leftover of some
	experiments); also, try to increase the number of available CPUs

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -18,7 +18,7 @@
 # sequence.
 
 # there are 8 logical CPUs, but only 4 physical ones
-TannitCPU = locks.MasterLock('tannit_cpu', maxCount=4)
+TannitCPU = locks.MasterLock('tannit_cpu', maxCount=6)
 
 
 class ShellCmd(shell.ShellCommand):
@@ -305,7 +305,7 @@
             Translate(
                 translationArgs=['-Ojit'],
                 targetArgs=[],
-                haltOnFailure=False,
+                haltOnFailure=True,
                 # this step can be executed in parallel with other builds
                 locks=[TannitCPU.access('counting')],
                 )


More information about the pypy-commit mailing list