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

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

Issue 957153002: Turn down all non-ninja iOS try bots, as well as chromium_trybot iOS bots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 9 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 ) 51 )
52 52
53 return out 53 return out
54 54
55 55
56 def ios(): 56 def ios():
57 compile_slaves = [ 57 compile_slaves = [
58 { 58 {
59 'master': 'TryServerChromiumMac', 59 'master': 'TryServerChromiumMac',
60 'builder': [ 60 'builder': [
61 'ios_dbg_simulator',
62 'ios_dbg_simulator_ninja', 61 'ios_dbg_simulator_ninja',
63 'ios_rel_device',
64 'ios_rel_device_ninja', 62 'ios_rel_device_ninja',
65 'ios_rel_device_ng',
66 'ios_dbg_simulator_ng',
67 'ios_rel_device_ninja_ng'
68 ], 63 ],
69 'hostname': 'build%d-a4' % i, 64 'hostname': 'build%d-a4' % i,
70 'os': 'mac', 65 'os': 'mac',
71 'version': '10.8', 66 'version': '10.8',
72 } for i in range(79, 82) + range(83, 99) # Skip 82. http://crbug.com/395099. 67 } for i in range(79, 82) + range(83, 99) # Skip 82. http://crbug.com/395099.
73 ] 68 ]
74 69
75 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on 70 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on
76 # the bots. 71 # the bots.
77 72
78 return compile_slaves 73 return compile_slaves
79 74
80 75
81 slaves = mac() + ios() 76 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