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

Side by Side Diff: masters/master.tryserver.chromium.mac/slaves.cfg

Issue 2133863003: Deploy more slaves into Mac optional0_slaves pool. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 # Copyright 2014 The Chromium Authors. All rights reserved. 3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # See master.experimental/slaves.cfg for documentation. 7 # See master.experimental/slaves.cfg for documentation.
8 8
9 def mac(): 9 def mac():
10 cq_slaves = ( 10 cq_slaves = (
11 ['vm%d-m4' % i for i in ([213, 256, 257, 258, 902, 903, 1000] + 11 ['vm%d-m4' % i for i in ([213, 256, 257, 258, 902, 903, 1000] +
12 range(277, 300) + range(552, 555) + 12 range(277, 300) + range(552, 555) +
13 range(682, 711) + range(860, 870) + 13 range(682, 711) + range(860, 870) +
14 range(969, 987))]) 14 range(969, 987))])
15 cq_builders = [ 15 cq_builders = [
16 'mac_chromium_compile_dbg_ng', 16 'mac_chromium_compile_dbg_ng',
17 'mac_chromium_rel_ng', 17 'mac_chromium_rel_ng',
18 ] 18 ]
19 19
20 optional0_slaves = ['vm%d-m4' % i for i in [713, 645, 646, 647, 648]] 20 optional0_slaves = ['vm%d-m4' % i for i in ([713, 645, 646, 647, 648] +
21 range(783, 788))]
21 optional0_builders = [ 22 optional0_builders = [
22 'mac_chromium_dbg_ng', 23 'mac_chromium_dbg_ng',
23 'mac_chromium_gyp_dbg', 24 'mac_chromium_gyp_dbg',
24 'mac_chromium_gyp_rel', 25 'mac_chromium_gyp_rel',
25 'mac_chromium_gn_upload', 26 'mac_chromium_gn_upload',
26 'mac_upload_clang', 27 'mac_upload_clang',
27 'mac_optional_gpu_tests_rel', 28 'mac_optional_gpu_tests_rel',
28 ] 29 ]
29 30
30 optional1_slaves = ['vm723-m4'] 31 optional1_slaves = ['vm723-m4']
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 'pool': 'ios_cq_rel', 217 'pool': 'ios_cq_rel',
217 } for slave in cq_slaves_rel] 218 } for slave in cq_slaves_rel]
218 219
219 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on 220 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on
220 # the bots. 221 # the bots.
221 222
222 return compile_slaves_dbg + compile_slaves_rel 223 return compile_slaves_dbg + compile_slaves_rel
223 224
224 225
225 slaves = mac() + ios() 226 slaves = mac() + ios()
OLDNEW
« 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