[pypy-commit] buildbot default: limit concurrent builds for windows slaves on virtual machines

matti noreply at buildbot.pypy.org
Wed Apr 17 21:30:26 CEST 2013


Author: matti
Branch: 
Changeset: r787:6ff7e31751c9
Date: 2013-04-17 22:30 +0300
http://bitbucket.org/pypy/buildbot/changeset/6ff7e31751c9/

Log:	limit concurrent builds for windows slaves on virtual machines

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -191,7 +191,10 @@
 CPYTHON_64 = "cpython-2-benchmark-x86-64"
 
 
-extra_opts= {'xerxes': {'keepalive_interval': 15}}
+extra_opts= {'xerxes': {'keepalive_interval': 15},
+             'aurora': {'max_builds': 1},
+             'salsa': {'max_builds': 1},
+             }
 
 BuildmasterConfig = {
     'slavePortnum': slavePortnum,


More information about the pypy-commit mailing list