| 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 linux(): | 9 def linux(): |
| 10 cq_slaves = (range(111, 131) + range(162, 399) + range(427, 453) + | 10 cq_slaves = (range(111, 131) + range(162, 399) + range(427, 453) + |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 result.append({ | 86 result.append({ |
| 87 'master': 'TryServerChromiumLinux', | 87 'master': 'TryServerChromiumLinux', |
| 88 'os': 'linux', | 88 'os': 'linux', |
| 89 'version': 'precise', | 89 'version': 'precise', |
| 90 'bits': '64', | 90 'bits': '64', |
| 91 'builder': 'linux_chromium_cfi_rel_ng', | 91 'builder': 'linux_chromium_cfi_rel_ng', |
| 92 'hostname': 'slave%d-c4' % slave, # Super beefy machines. | 92 'hostname': 'slave%d-c4' % slave, # Super beefy machines. |
| 93 'pool': 'linux_chromium_cfi_rel_ng', | 93 'pool': 'linux_chromium_cfi_rel_ng', |
| 94 }) | 94 }) |
| 95 | 95 |
| 96 # Trusty slave for depot_tools_presubmit | |
| 97 result.extend([ | |
| 98 { | |
| 99 'master': 'TryServerChromiumLinux', | |
| 100 'os': 'linux', | |
| 101 'version': 'trusty', | |
| 102 'bits': '64', | |
| 103 'builder': ['depot_tools_presubmit'], | |
| 104 'hostname': 'slave426-c4', | |
| 105 'pool': 'depot_tools_presubmit', | |
| 106 } | |
| 107 ]) | |
| 108 | |
| 109 linux_full_bisect_builder_slaves = [747, 748] | 96 linux_full_bisect_builder_slaves = [747, 748] |
| 110 result.extend( | 97 result.extend( |
| 111 { | 98 { |
| 112 'master': 'TryServerChromiumLinux', | 99 'master': 'TryServerChromiumLinux', |
| 113 'os': 'linux', | 100 'os': 'linux', |
| 114 'version': 'precise', | 101 'version': 'precise', |
| 115 'bits': '64', | 102 'bits': '64', |
| 116 'builder': 'linux_full_bisect_builder', | 103 'builder': 'linux_full_bisect_builder', |
| 117 'hostname': 'slave%d-c4' % i, | 104 'hostname': 'slave%d-c4' % i, |
| 118 'pool': 'linux_full_bisect_builder', | 105 'pool': 'linux_full_bisect_builder', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 148 'builder': ['linux_chromium_browser_side_navigation_rel'], | 135 'builder': ['linux_chromium_browser_side_navigation_rel'], |
| 149 'hostname': 'slave914-c4', | 136 'hostname': 'slave914-c4', |
| 150 'pool': 'linux_chromium_browser_side_navigation_rel', | 137 'pool': 'linux_chromium_browser_side_navigation_rel', |
| 151 } | 138 } |
| 152 ]) | 139 ]) |
| 153 | 140 |
| 154 return result | 141 return result |
| 155 | 142 |
| 156 | 143 |
| 157 slaves = linux() | 144 slaves = linux() |
| OLD | NEW |