| 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 23 matching lines...) Expand all Loading... |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 optional2_slaves = ['vm%d-m4' % i for i in [1025, 1026]] | 36 optional2_slaves = ['vm%d-m4' % i for i in [1025, 1026]] |
| 37 optional2_builders = [ | 37 optional2_builders = [ |
| 38 'mac_chromium_archive_rel_ng', | 38 'mac_chromium_archive_rel_ng', |
| 39 'mac_chromium_asan_rel_ng', | 39 'mac_chromium_asan_rel_ng', |
| 40 'mac_chromium_compile_rel_ng', | 40 'mac_chromium_compile_rel_ng', |
| 41 'mac_deterministic', | 41 'mac_deterministic', |
| 42 'mac_chromium_asan_variable', | 42 'mac_chromium_asan_variable', |
| 43 'mac_chromium_variable', | 43 'mac_chromium_variable', |
| 44 'mac_chromium_variable_archive', |
| 44 'mac_chromium_variable_gn', | 45 'mac_chromium_variable_gn', |
| 45 ] | 46 ] |
| 46 | 47 |
| 47 out = [] | 48 out = [] |
| 48 out.extend( | 49 out.extend( |
| 49 { | 50 { |
| 50 'master': 'TryServerChromiumMac', | 51 'master': 'TryServerChromiumMac', |
| 51 'builder': cq_builders, | 52 'builder': cq_builders, |
| 52 'preferred_builder': cq_builders[i % len(cq_builders)], | 53 'preferred_builder': cq_builders[i % len(cq_builders)], |
| 53 'hostname': slave, | 54 'hostname': slave, |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'pool': 'ios_cq_rel', | 156 'pool': 'ios_cq_rel', |
| 156 } for slave in cq_slaves_rel] | 157 } for slave in cq_slaves_rel] |
| 157 | 158 |
| 158 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on | 159 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on |
| 159 # the bots. | 160 # the bots. |
| 160 | 161 |
| 161 return compile_slaves_dbg + compile_slaves_rel | 162 return compile_slaves_dbg + compile_slaves_rel |
| 162 | 163 |
| 163 | 164 |
| 164 slaves = mac() + ios() | 165 slaves = mac() + ios() |
| OLD | NEW |