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

Unified Diff: masters/master.tryserver.chromium.mac/slaves.cfg

Issue 1851683002: Reorganized optional builders on mac tryserver (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fixed pool name Created 4 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.tryserver.chromium.mac/slaves.cfg
diff --git a/masters/master.tryserver.chromium.mac/slaves.cfg b/masters/master.tryserver.chromium.mac/slaves.cfg
index f047d04e867accfe81dbca593ad9c3c98d3d0c9e..fc1b1a43f6d3a0d21c7f5deaaab2a9c41f4382b6 100644
--- a/masters/master.tryserver.chromium.mac/slaves.cfg
+++ b/masters/master.tryserver.chromium.mac/slaves.cfg
@@ -33,26 +33,29 @@ def mac():
'mac_nacl_sdk_build',
]
- optional2_slaves = ['vm%d-m4' % i for i in [1025, 1026]]
+ optional2_slaves = ['vm1025-m4']
optional2_builders = [
- 'mac_chromium_archive_rel_ng',
- 'mac_chromium_asan_rel_ng',
'mac_chromium_compile_rel_ng',
- 'mac_deterministic',
- 'mac_chromium_asan_variable',
'mac_chromium_variable',
'mac_chromium_variable_archive',
- 'mac_chromium_variable_chrome',
- 'mac_chromium_variable_gn',
- 'mac_chromium_variable_layout',
]
+ optional3_slaves = ['build190-m4']
optional3_builders = [
'mac_chromium_variable_10.10',
'mac_chromium_variable_10.10_layout',
]
- optional3_slaves = ['build%d-m4' % i for i in [190]]
+ optional4_slaves = ['vm1026-m4']
+ optional4_builders = [
+ 'mac_chromium_archive_rel_ng',
+ 'mac_chromium_asan_rel_ng',
+ 'mac_deterministic',
+ 'mac_chromium_asan_variable',
+ 'mac_chromium_variable_chrome',
+ 'mac_chromium_variable_gn',
+ 'mac_chromium_variable_layout',
+ ]
out = []
out.extend(
@@ -123,6 +126,17 @@ def mac():
'pool': 'mac_optional_10_10',
} for slave in optional3_slaves
)
+ out.extend(
+ {
+ 'master': 'TryServerChromiumMac',
+ 'builder': optional4_builders,
+ 'hostname': slave,
+ 'os': 'mac',
+ 'version': '10.10',
+ 'bits': '64',
+ 'pool': 'mac_optional_other',
+ } for slave in optional4_slaves
+ )
return out
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698