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

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

Issue 2152103002: Add ios-simulator-cronet to tryserver.chromium.mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
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 | Annotate | Revision Log
« no previous file with comments | « masters/master.tryserver.chromium.mac/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 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 { 210 {
211 'master': 'TryServerChromiumMac', 211 'master': 'TryServerChromiumMac',
212 'builder': cq_builders_rel, 212 'builder': cq_builders_rel,
213 'hostname': slave, 213 'hostname': slave,
214 'preferred_builder': cq_builders_rel[i % len(cq_builders_rel)], 214 'preferred_builder': cq_builders_rel[i % len(cq_builders_rel)],
215 'os': 'mac', 215 'os': 'mac',
216 'version': '10.10', 216 'version': '10.10',
217 'pool': 'ios_cq_rel', 217 'pool': 'ios_cq_rel',
218 } for slave in cq_slaves_rel] 218 } for slave in cq_slaves_rel]
219 219
220 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on 220 extra_builders = [
221 # the bots. 221 {
222 'master': 'TryServerChromiumMac',
223 'builder': 'ios-simulator-cronet',
224 'hostname': 'vm667-m4',
225 'os': 'mac',
226 'version': '10.10',
227 },
228 ]
222 229
223 return compile_slaves_dbg + compile_slaves_rel 230 return compile_slaves_dbg + compile_slaves_rel + extra_builders
224 231
225 232
226 slaves = mac() + ios() 233 slaves = mac() + ios()
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.mac/master.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698