[zorg] r178457 - Make xserve4, xserve5 at most run 1 build at a time.

Michael Gottesman mgottesman at apple.com
Sun Mar 31 22:59:10 PDT 2013


Author: mgottesman
Date: Mon Apr  1 00:59:10 2013
New Revision: 178457

URL: http://llvm.org/viewvc/llvm-project?rev=178457&view=rev
Log:
Make xserve4, xserve5 at most run 1 build at a time.

xserve5 is being used only for the nobootstrap-RA build, so why allow for 2
builds at a time (seems weird).

xserve4 is being used for the libcxx and lldb builders. It would be good to not
have them run at the same time.

Modified:
    zorg/trunk/buildbot/llvmlab/master/config/slaves.py

Modified: zorg/trunk/buildbot/llvmlab/master/config/slaves.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/llvmlab/master/config/slaves.py?rev=178457&r1=178456&r2=178457&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/slaves.py (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/slaves.py Mon Apr  1 00:59:10 2013
@@ -23,8 +23,8 @@ def get_build_slaves():
     # Builders.
     yield create_slave('xserve2', jobs = 4, max_builds = 2)
     yield create_slave('xserve3', jobs = 4, max_builds = 2)
-    yield create_slave('xserve4', jobs = 4, max_builds = 2)
-    yield create_slave('xserve5', jobs = 4, max_builds = 2)
+    yield create_slave('xserve4', jobs = 4, max_builds = 1)
+    yield create_slave('xserve5', jobs = 4, max_builds = 1)
 
     is_production = config.options.has_option('Master Options', 'is_production')
     if not is_production:





More information about the llvm-commits mailing list