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

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

Issue 10787011: Add split builder/tester android trybot target (Closed) Base URL: https://git.chromium.org/chromium/tools/build.git@master
Patch Set: Created 8 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
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 9
10 def linux(): 10 def linux():
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 compile_slaves = [ 157 compile_slaves = [
158 { 158 {
159 'master': 'TryServer', 159 'master': 'TryServer',
160 'builder': ['android'], 160 'builder': ['android', 'android_compiler'],
161 'hostname': 'vm%d-m4' % i, 161 'hostname': 'vm%d-m4' % i,
162 'os': 'linux', 162 'os': 'linux',
163 'version': 'lucid', 163 'version': 'lucid',
164 'bits': '64', 164 'bits': '64',
165 } for i in range(430, 468) 165 } for i in range(430, 468)
166 ] 166 ]
167 167
168 # Android tester bots
169 tester_slaves = [ 168 tester_slaves = [
170 { 169 {
171 'master': 'TryServer', 170 'master': 'TryServer',
172 'builder': ['android_test'], 171 'builder': ['android_tester'],
173 'hostname': 'chromeperf%d' % i, 172 'hostname': 'chromeperf%d' % i,
174 'os': 'linux', 173 'os': 'linux',
175 'version': 'lucid', 174 'version': 'lucid',
176 'bits': '64', 175 'bits': '64',
177 } for i in (23, 26, 27, 28, 29) 176 } for i in (23, 26, 27, 28, 29)
178 ] 177 ]
179 178
180 return compile_slaves + tester_slaves 179 return compile_slaves + tester_slaves
181 180
182 181
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 ] 237 ]
239 238
240 return ( 239 return (
241 normal_slaves + 240 normal_slaves +
242 drmemory_slaves + 241 drmemory_slaves +
243 chromeframe_slave + 242 chromeframe_slave +
244 gpu_slaves) 243 gpu_slaves)
245 244
246 245
247 slaves = linux() + mac() + windows() + cros() + android() 246 slaves = linux() + mac() + windows() + cros() + android()
OLDNEW
« masters/master.tryserver.chromium/master.cfg ('K') | « masters/master.tryserver.chromium/master.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698