Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: masters/master.chromiumos/slaves.cfg

Issue 2250443002: Update floating builder logic, add to "chromiumos" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Pylint fixes. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « masters/master.chromiumos/slave_pool.json ('k') | scripts/common/slave_alloc.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromiumos/slaves.cfg
diff --git a/masters/master.chromiumos/slaves.cfg b/masters/master.chromiumos/slaves.cfg
index d3985e2be58f3c08ed910c81915c0bba0756b0bf..260f859df966dc09335bb7b84769c04a7fa86d21 100644
--- a/masters/master.chromiumos/slaves.cfg
+++ b/masters/master.chromiumos/slaves.cfg
@@ -16,7 +16,8 @@ def shared(slave_type):
# Baremetal slaves
sa.AddPool(SlaveType.BAREMETAL, *('build%s-m2' % (n,) for n in set([
- 85, 86, 87, 92, 112, 162, 174, 182, 203, 257, 263, 323, 326,
+ 85, 86, 87, 92, 112, 162, 174, 182, 203, 257, 258, 317, 263, 323, 326,
+ 333,
]) - set([
# Decommissioned slaves (please include bug so we can re-include when Fixed).
91, # crbug.com/606427
@@ -57,6 +58,17 @@ for board_config in chromiumos_board_config.builder_configs.itervalues():
exclusive=True,
subtype=name))
+ # If the board requires a floating builder, add that.
+ if board_config.floating:
+ sa.Join(
+ name,
+ sa.Alloc(
+ 'floating',
+ subtype=board_config.config.category,
+ pools=[board_config.slave_type],
+ count=board_config.floating,
+ exclusive=True))
+
def GenSlave(hostname, config_names):
return {
'master': 'ChromiumOS',
« no previous file with comments | « masters/master.chromiumos/slave_pool.json ('k') | scripts/common/slave_alloc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698