| Index: masters/master.chromiumos/slaves.cfg
|
| diff --git a/masters/master.chromiumos/slaves.cfg b/masters/master.chromiumos/slaves.cfg
|
| index 1e3791aa099cf026164ddcdad4497f464ff08203..5329f4fae889e8e4cb3b7cd12094857ba4bdfd8e 100644
|
| --- a/masters/master.chromiumos/slaves.cfg
|
| +++ b/masters/master.chromiumos/slaves.cfg
|
| @@ -16,10 +16,9 @@ def shared(slave_type):
|
|
|
| # Baremetal slaves
|
| sa.AddPool(SlaveType.BAREMETAL, *('build%s-m2' % (n,) for n in set([
|
| - 85, 86, 87, 91, 92, 112, 118, 141, 162, 174, 182,
|
| - 203, 263, 323, 326,
|
| + 85, 86, 87, 91, 92, 112, 141, 162, 174, 182, 203, 263, 323, 326,
|
| ]) - set([
|
| - 91, # crbug.com/600599
|
| + # Decommissioned slaves (please include bug so we can re-include when Fixed).
|
| ])))
|
|
|
| # GCE slaves
|
| @@ -28,9 +27,11 @@ sa.AddPool(SlaveType.GCE, *('cros%s-c2' % (n,) for n in (
|
| )))
|
|
|
| # Baremetal shared slave pool (e.g., build123-m2)
|
| -sa.AddPool(shared(SlaveType.BAREMETAL), *('build%s-m2' % (n,) for n in (
|
| +sa.AddPool(shared(SlaveType.BAREMETAL), *('build%s-m2' % (n,) for n in set([
|
| 84, 94
|
| -)))
|
| +]) - set([
|
| + # Decommissioned slaves (please include bug so we can re-include when Fixed).
|
| +])))
|
|
|
| for board_config in chromiumos_board_config.builder_configs.itervalues():
|
| name = board_config.config.name
|
|
|