[llvm-commits] [zorg] r124744 - /zorg/trunk/buildbot/llvmlab/master/config/slaves.py

David Dean david_dean at apple.com
Wed Feb 2 12:14:28 PST 2011


Author: ddean
Date: Wed Feb  2 14:14:27 2011
New Revision: 124744

URL: http://llvm.org/viewvc/llvm-project?rev=124744&view=rev
Log:
set minis to only run one build at a time, they're two slow otherwise

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=124744&r1=124743&r2=124744&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/slaves.py (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/slaves.py Wed Feb  2 14:14:27 2011
@@ -7,6 +7,7 @@
                                           *args, **kwargs)
 
 def get_build_slaves():
+    #phase runners
     yield create_slave("llvmlab.local",
                        notify_on_missing="david_dean at apple.com",
                        properties = { 'jobs' : 16 },
@@ -14,16 +15,16 @@
     yield create_slave("lab-mini-01.local",
                        notify_on_missing="david_dean at apple.com",
                        properties = { 'jobs' : 2 },
-                       max_builds = 2)
+                       max_builds = 1)
     yield create_slave("lab-mini-02.local",
                        notify_on_missing="david_dean at apple.com",
                        properties = { 'jobs' : 2 },
-                       max_builds = 2)
+                       max_builds = 1)
     yield create_slave("lab-mini-03.local",
                        notify_on_missing="david_dean at apple.com",
                        properties = { 'jobs' : 2 },
-                       max_builds = 2)
+                       max_builds = 1)
     yield create_slave("lab-mini-04.local",
                        notify_on_missing="david_dean at apple.com",
                        properties = { 'jobs' : 2 },
-                       max_builds = 2)
+                       max_builds = 1)





More information about the llvm-commits mailing list