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

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

Issue 10910219: Remove android_test trybot type (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rename buildbot vars Created 8 years, 3 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 | « masters/master.tryserver.chromium/master.cfg ('k') | 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 (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 # down slaves don't cause re-allocation, just removal 9 # down slaves don't cause re-allocation, just removal
10 down_slaves = [ 10 down_slaves = [
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 'version': 'lucid', 203 'version': 'lucid',
204 'bits': '64', 204 'bits': '64',
205 } for i in (2, 4, 5, 6) 205 } for i in (2, 4, 5, 6)
206 ] 206 ]
207 207
208 208
209 def android(): 209 def android():
210 compile_slaves = [ 210 compile_slaves = [
211 { 211 {
212 'master': 'TryServer', 212 'master': 'TryServer',
213 'builder': ['android', 'android_builder'], 213 'builder': ['android', 'android_dbg', 'android_fyi_dbg'],
214 'hostname': 'vm%d-m4' % i, 214 'hostname': 'vm%d-m4' % i,
215 'os': 'linux', 215 'os': 'linux',
216 'version': 'lucid', 216 'version': 'lucid',
217 'bits': '64', 217 'bits': '64',
218 } for i in range(430, 468) 218 } for i in range(430, 468)
219 ] 219 ]
220 220
221 test_slaves = [ 221 test_slaves = [
222 { 222 {
223 'master': 'TryServer', 223 'master': 'TryServer',
224 'builder': ['android_test', 'android_tester'], 224 'builder': ['android_dbg_triggered_tests',
225 'android_fyi_dbg_triggered_tests'],
225 'hostname': 'chromeperf%d' % i, 226 'hostname': 'chromeperf%d' % i,
226 'os': 'linux', 227 'os': 'linux',
227 'version': 'lucid', 228 'version': 'lucid',
228 'bits': '64', 229 'bits': '64',
229 } for i in (26, 27, 28, 29, 44, 45, 46, 230 } for i in (26, 27, 28, 29, 44, 45, 46,
230 50, 51, 52, 53, 54, 55) 231 50, 51, 52, 53, 54, 55)
231 ] 232 ]
232 233
233 return compile_slaves + test_slaves 234 return compile_slaves + test_slaves
234 235
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 normal_slaves + 348 normal_slaves +
348 drmemory_slaves + 349 drmemory_slaves +
349 chromeframe_slave + 350 chromeframe_slave +
350 gpu_slaves + 351 gpu_slaves +
351 swarm_slaves + 352 swarm_slaves +
352 perf_slaves) 353 perf_slaves)
353 354
354 355
355 slaves = filter(in_service, 356 slaves = filter(in_service,
356 linux() + mac() + windows() + cros() + android() + ios()) 357 linux() + mac() + windows() + cros() + android() + ios())
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium/master.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698