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

Side by Side 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 problem. Thanks dnj! Created 4 years, 8 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 | Annotate | Revision Log
« 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 = (
(...skipping 15 matching lines...) Expand all
26 'mac_chromium_clang_upload', 26 'mac_chromium_clang_upload',
27 'mac_optional_gpu_tests_rel', 27 'mac_optional_gpu_tests_rel',
28 ] 28 ]
29 29
30 optional1_slaves = ['vm723-m4'] 30 optional1_slaves = ['vm723-m4']
31 optional1_builders = [ 31 optional1_builders = [
32 'mac_nacl_sdk', 32 'mac_nacl_sdk',
33 'mac_nacl_sdk_build', 33 'mac_nacl_sdk_build',
34 ] 34 ]
35 35
36 optional2_slaves = ['vm%d-m4' % i for i in [1025, 1026]] 36 optional2_slaves = ['vm1025-m4']
37 optional2_builders = [ 37 optional2_builders = [
38 'mac_chromium_compile_rel_ng',
39 'mac_chromium_variable',
40 'mac_chromium_variable_archive',
41 ]
42
43 optional3_slaves = ['build190-m4']
44 optional3_builders = [
45 'mac_chromium_variable_10.10',
46 'mac_chromium_variable_10.10_layout',
47 ]
48
49 optional4_slaves = ['vm1026-m4']
50 optional4_builders = [
38 'mac_chromium_archive_rel_ng', 51 'mac_chromium_archive_rel_ng',
39 'mac_chromium_asan_rel_ng', 52 'mac_chromium_asan_rel_ng',
40 'mac_chromium_compile_rel_ng',
41 'mac_deterministic', 53 'mac_deterministic',
42 'mac_chromium_asan_variable', 54 'mac_chromium_asan_variable',
43 'mac_chromium_variable',
44 'mac_chromium_variable_archive',
45 'mac_chromium_variable_chrome', 55 'mac_chromium_variable_chrome',
46 'mac_chromium_variable_gn', 56 'mac_chromium_variable_gn',
47 'mac_chromium_variable_layout', 57 'mac_chromium_variable_layout',
48 ] 58 ]
49 59
50 optional3_builders = [
51 'mac_chromium_variable_10.10',
52 'mac_chromium_variable_10.10_layout',
53 ]
54
55 optional3_slaves = ['build%d-m4' % i for i in [190]]
56
57 out = [] 60 out = []
58 out.extend( 61 out.extend(
59 { 62 {
60 'master': 'TryServerChromiumMac', 63 'master': 'TryServerChromiumMac',
61 'builder': cq_builders, 64 'builder': cq_builders,
62 'preferred_builder': cq_builders[i % len(cq_builders)], 65 'preferred_builder': cq_builders[i % len(cq_builders)],
63 'hostname': slave, 66 'hostname': slave,
64 'os': 'mac', 67 'os': 'mac',
65 'version': '10.9', 68 'version': '10.9',
66 'bits': '64', 69 'bits': '64',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 { 119 {
117 'master': 'TryServerChromiumMac', 120 'master': 'TryServerChromiumMac',
118 'builder': optional3_builders, 121 'builder': optional3_builders,
119 'hostname': slave, 122 'hostname': slave,
120 'os': 'mac', 123 'os': 'mac',
121 'version': '10.10', 124 'version': '10.10',
122 'bits': '64', 125 'bits': '64',
123 'pool': 'mac_optional_10_10', 126 'pool': 'mac_optional_10_10',
124 } for slave in optional3_slaves 127 } for slave in optional3_slaves
125 ) 128 )
129 out.extend(
130 {
131 'master': 'TryServerChromiumMac',
132 'builder': optional4_builders,
133 'hostname': slave,
134 'os': 'mac',
135 'version': '10.10',
dnj 2016/03/31 22:54:35 This should have the same parameters as the "optio
136 'bits': '64',
137 'pool': 'mac_optional_10_10',
138 } for slave in optional4_slaves
139 )
126 140
127 return out 141 return out
128 142
129 143
130 def ios(): 144 def ios():
131 # Split by dbg/rel because it splits the load evenly. 145 # Split by dbg/rel because it splits the load evenly.
132 cq_builders_dbg = [ 146 cq_builders_dbg = [
133 'ios_dbg_simulator', 147 'ios_dbg_simulator',
134 'ios_dbg_simulator_gn', 148 'ios_dbg_simulator_gn',
135 'ios_dbg_simulator_ninja', 149 'ios_dbg_simulator_ninja',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'pool': 'ios_cq_rel', 190 'pool': 'ios_cq_rel',
177 } for slave in cq_slaves_rel] 191 } for slave in cq_slaves_rel]
178 192
179 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on 193 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on
180 # the bots. 194 # the bots.
181 195
182 return compile_slaves_dbg + compile_slaves_rel 196 return compile_slaves_dbg + compile_slaves_rel
183 197
184 198
185 slaves = mac() + ios() 199 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