OLD | NEW |
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 Loading... |
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() |
OLD | NEW |