| 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 24 matching lines...) Expand all Loading... |
| 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_archive', |
| 45 'mac_chromium_variable_chrome', |
| 45 'mac_chromium_variable_gn', | 46 'mac_chromium_variable_gn', |
| 46 ] | 47 ] |
| 47 | 48 |
| 48 out = [] | 49 out = [] |
| 49 out.extend( | 50 out.extend( |
| 50 { | 51 { |
| 51 'master': 'TryServerChromiumMac', | 52 'master': 'TryServerChromiumMac', |
| 52 'builder': cq_builders, | 53 'builder': cq_builders, |
| 53 'preferred_builder': cq_builders[i % len(cq_builders)], | 54 'preferred_builder': cq_builders[i % len(cq_builders)], |
| 54 'hostname': slave, | 55 'hostname': slave, |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 'pool': 'ios_cq_rel', | 157 'pool': 'ios_cq_rel', |
| 157 } for slave in cq_slaves_rel] | 158 } for slave in cq_slaves_rel] |
| 158 | 159 |
| 159 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on | 160 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on |
| 160 # the bots. | 161 # the bots. |
| 161 | 162 |
| 162 return compile_slaves_dbg + compile_slaves_rel | 163 return compile_slaves_dbg + compile_slaves_rel |
| 163 | 164 |
| 164 | 165 |
| 165 slaves = mac() + ios() | 166 slaves = mac() + ios() |
| OLD | NEW |