| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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() |
| OLD | NEW |