From 29ed0103b953019804930dc9c8872ef7e14ac32c Mon Sep 17 00:00:00 2001 From: "E. Dunham" Date: Thu, 25 May 2017 13:26:24 -0700 Subject: [PATCH] Mac9 is ready * Return mac1 to rotation * Remove macpro1 * Add mac9 * Switch the whole thing to a nice list comprehension --- buildbot/master/files/config/master.cfg | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/buildbot/master/files/config/master.cfg b/buildbot/master/files/config/master.cfg index c0a9d4599..c2a129ec1 100644 --- a/buildbot/master/files/config/master.cfg +++ b/buildbot/master/files/config/master.cfg @@ -10,14 +10,7 @@ from passwords import HOMU_BUILDBOT_SECRET, GITHUB_STATUS_TOKEN LINUX_SLAVES = ["servo-linux{}".format(i) for i in range(1, 7)] -MAC_SLAVES = ["servo-mac2", - "servo-mac3", - "servo-mac4", - "servo-mac5", - "servo-mac6", - "servo-mac7", - "servo-mac8", - "servo-macpro1"] +MAC_SLAVES = ["servo-mac{}".format(i) for i in range(1, 10)] CROSS_SLAVES = ["servo-linux-cross{}".format(i) for i in range(1, 4)] WINDOWS_SLAVES = ["servo-windows{}".format(i) for i in range(1, 3)]