| 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 24 matching lines...) Expand all Loading... |
| 35 optional_builders = [ | 35 optional_builders = [ |
| 36 'Chromium Linux Codesearch Builder', | 36 'Chromium Linux Codesearch Builder', |
| 37 'ChromiumOS Codesearch Builder', | 37 'ChromiumOS Codesearch Builder', |
| 38 'linux_arm', | 38 'linux_arm', |
| 39 'linux_chromium_asan_variable', | 39 'linux_chromium_asan_variable', |
| 40 'linux_chromium_chromeos_asan_variable', | 40 'linux_chromium_chromeos_asan_variable', |
| 41 'linux_chromium_chromeos_compile_rel_ng', | 41 'linux_chromium_chromeos_compile_rel_ng', |
| 42 'linux_chromium_chromeos_dbg_ng', | 42 'linux_chromium_chromeos_dbg_ng', |
| 43 'linux_chromium_chromeos_msan_rel_ng', | 43 'linux_chromium_chromeos_msan_rel_ng', |
| 44 'linux_chromium_chromeos_variable', | 44 'linux_chromium_chromeos_variable', |
| 45 'linux_chromium_clang_upload', |
| 45 'linux_chromium_compile_rel_ng', | 46 'linux_chromium_compile_rel_ng', |
| 46 'linux_chromium_dbg_ng', | 47 'linux_chromium_dbg_ng', |
| 47 'linux_chromium_gn_upload', | 48 'linux_chromium_gn_upload', |
| 48 'linux_chromium_msan_rel_ng', | 49 'linux_chromium_msan_rel_ng', |
| 49 'linux_chromium_tsan_rel_ng', | 50 'linux_chromium_tsan_rel_ng', |
| 50 'linux_chromium_practice_rel_ng', | 51 'linux_chromium_practice_rel_ng', |
| 51 'linux_chromium_variable', | 52 'linux_chromium_variable', |
| 52 'linux_deterministic', | 53 'linux_deterministic', |
| 53 'linux_ecs_ozone', | 54 'linux_ecs_ozone', |
| 54 'linux_nacl_sdk', | 55 'linux_nacl_sdk', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 ], | 134 ], |
| 134 'hostname': 'vm%d-m4' % i, | 135 'hostname': 'vm%d-m4' % i, |
| 135 'pool': 'linux_32', | 136 'pool': 'linux_32', |
| 136 } for i in linux_32_slaves | 137 } for i in linux_32_slaves |
| 137 ) | 138 ) |
| 138 | 139 |
| 139 return result | 140 return result |
| 140 | 141 |
| 141 | 142 |
| 142 slaves = linux() | 143 slaves = linux() |
| OLD | NEW |