OLD | NEW |
---|---|
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 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 | 9 |
10 def linux(): | 10 def linux(): |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
147 'builder': ['cros_x86', 'cros_amd64'], | 147 'builder': ['cros_x86', 'cros_amd64'], |
148 'hostname': 'build%d-m4' % i, | 148 'hostname': 'build%d-m4' % i, |
149 'os': 'linux', | 149 'os': 'linux', |
150 'version': 'lucid', | 150 'version': 'lucid', |
151 'bits': '64', | 151 'bits': '64', |
152 } for i in (2, 4, 5, 6) | 152 } for i in (2, 4, 5, 6) |
153 ] | 153 ] |
154 | 154 |
155 | 155 |
156 def android(): | 156 def android(): |
157 """Android compile-only trybots.""" | 157 compile_only_slaves = [ |
158 normal_slaves = [46, 57, 176, 98] | |
159 # Newer slaves. | |
160 # Full range of allocated bots... | |
161 # normal_slaves += range(430, 468) | |
162 # But these are the ones we've set up so far. | |
163 normal_slaves += [430, 434, 436, 437, 438, 439, 442, 443, 444, 445] | |
164 return [ | |
165 { | 158 { |
166 'master': 'TryServer', | 159 'master': 'TryServer', |
167 'builder': ['android'], | 160 'builder': ['android'], |
M-A Ruel
2012/07/14 22:32:50
You should set it to:
'builder': ['android', 'andr
Isaac (away)
2012/07/16 10:00:10
Can you explain what that does? I've never tried
M-A Ruel
2012/07/16 13:11:44
Look at the other configs. The result is the slave
| |
168 'hostname': 'vm%d-m4' % i, | 161 'hostname': 'vm%d-m4' % i, |
169 'os': 'linux', | 162 'os': 'linux', |
170 'version': 'lucid', | 163 'version': 'lucid', |
171 'bits': '64', | 164 'bits': '64', |
172 } for i in normal_slaves | 165 } for i in range(430, 446) |
173 ] | 166 ] |
174 | 167 |
175 | 168 compiler_zip_slaves = [ |
176 def android_test(): | |
177 """Android compile-and-test trybots.""" | |
178 return [ | |
179 { | 169 { |
180 'master': 'TryServer', | 170 'master': 'TryServer', |
181 'builder': ['android_test'], | 171 'builder': ['android_compiler'], |
172 'hostname': 'vm%d-m4' % i, | |
173 'os': 'linux', | |
174 'version': 'lucid', | |
175 'bits': '64', | |
176 } for i in range(446, 468) | |
177 ] | |
178 | |
179 # Android tester bots | |
180 tester_slaves = [ | |
181 { | |
182 'master': 'TryServer', | |
183 'builder': ['android_tester'], | |
182 'hostname': 'chromeperf%d' % i, | 184 'hostname': 'chromeperf%d' % i, |
183 'os': 'linux', | 185 'os': 'linux', |
184 'version': 'lucid', | 186 'version': 'lucid', |
185 'bits': '64', | 187 'bits': '64', |
186 } for i in (23, 26, 27, 28, 29) | 188 } for i in (23, 26, 27, 28, 29) |
187 ] | 189 ] |
188 | 190 |
191 return compile_only_slaves + compiler_zip_slaves + tester_slaves | |
189 | 192 |
190 def windows(): | 193 def windows(): |
191 # One of these builders set is seletected in alternance as an extra builder. | 194 # One of these builders set is seletected in alternance as an extra builder. |
192 extras = [ | 195 extras = [ |
193 ['win_vs2010', 'win_vs2010_rel'], | 196 ['win_vs2010', 'win_vs2010_rel'], |
194 ['win_ash'], | 197 ['win_ash'], |
195 ['win_aura'], | 198 ['win_aura'], |
196 ['win_nacl_sdk'], | 199 ['win_nacl_sdk'], |
197 ['win_layout', 'win_layout_rel'] | 200 ['win_layout', 'win_layout_rel'] |
198 ] | 201 ] |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
244 } for i in range(3, 6) | 247 } for i in range(3, 6) |
245 ] | 248 ] |
246 | 249 |
247 return ( | 250 return ( |
248 normal_slaves + | 251 normal_slaves + |
249 drmemory_slaves + | 252 drmemory_slaves + |
250 chromeframe_slave + | 253 chromeframe_slave + |
251 gpu_slaves) | 254 gpu_slaves) |
252 | 255 |
253 | 256 |
254 slaves = linux() + mac() + windows() + cros() + android() + android_test() | 257 slaves = linux() + mac() + windows() + cros() + android() |
OLD | NEW |