| 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) + |
| 11 range(493, 497) + range(506, 540) + range(590, 600) + | 11 range(493, 497) + range(506, 540) + range(590, 600) + |
| 12 range(621, 651) + range(779, 799) + range(841, 864)) | 12 range(621, 651) + range(779, 799) + range(841, 864)) |
| 13 cq_builders = [ | 13 cq_builders = [ |
| 14 'android_chromium_gn_compile_dbg', | 14 'android_chromium_gn_compile_dbg', |
| 15 'android_chromium_gn_compile_rel', | 15 'android_chromium_gn_compile_rel', |
| 16 'cast_shell_android', | 16 'cast_shell_android', |
| 17 'cast_shell_linux', | 17 'cast_shell_linux', |
| 18 'chromium_presubmit', | 18 'chromium_presubmit', |
| 19 'linux_arm_compile', | |
| 20 'linux_blink_oilpan_rel', | 19 'linux_blink_oilpan_rel', |
| 21 'linux_chromium_archive_rel_ng', | 20 'linux_chromium_archive_rel_ng', |
| 22 'linux_chromium_asan_rel_ng', | 21 'linux_chromium_asan_rel_ng', |
| 23 'linux_chromium_chromeos_compile_dbg_ng', | 22 'linux_chromium_chromeos_compile_dbg_ng', |
| 24 'linux_chromium_chromeos_ozone_rel_ng', | 23 'linux_chromium_chromeos_ozone_rel_ng', |
| 25 'linux_chromium_chromeos_rel_ng', | 24 'linux_chromium_chromeos_rel_ng', |
| 26 'linux_chromium_clobber_rel_ng', | 25 'linux_chromium_clobber_rel_ng', |
| 27 'linux_chromium_compile_dbg_ng', | 26 'linux_chromium_compile_dbg_ng', |
| 28 'linux_chromium_gn_chromeos_dbg', | 27 'linux_chromium_gn_chromeos_dbg', |
| 29 'linux_chromium_gn_chromeos_rel', | 28 'linux_chromium_gn_chromeos_rel', |
| 30 'linux_chromium_rel_ng', | 29 'linux_chromium_rel_ng', |
| 31 ] | 30 ] |
| 32 cq_builders += [ | 31 cq_builders += [ |
| 33 'chromeos_%s_chromium_compile_only_ng' % (board,) | 32 'chromeos_%s_chromium_compile_only_ng' % (board,) |
| 34 for board in ('x86-generic', 'amd64-generic', 'daisy') | 33 for board in ('x86-generic', 'amd64-generic', 'daisy') |
| 35 ] | 34 ] |
| 36 | 35 |
| 37 optional_slaves = [568, 866, 867] + range(714, 719) | 36 optional_slaves = [568, 866, 867] + range(714, 719) |
| 38 optional_builders = [ | 37 optional_builders = [ |
| 39 'Chromium Linux Codesearch Builder', | 38 'Chromium Linux Codesearch Builder', |
| 40 'ChromiumOS Codesearch Builder', | 39 'ChromiumOS Codesearch Builder', |
| 40 'linux_arm', |
| 41 'linux_chromium_asan_variable', | 41 'linux_chromium_asan_variable', |
| 42 'linux_chromium_chromeos_asan_rel_ng', | 42 'linux_chromium_chromeos_asan_rel_ng', |
| 43 'linux_chromium_chromeos_asan_variable', | 43 'linux_chromium_chromeos_asan_variable', |
| 44 'linux_chromium_chromeos_compile_rel_ng', | 44 'linux_chromium_chromeos_compile_rel_ng', |
| 45 'linux_chromium_chromeos_dbg_ng', | 45 'linux_chromium_chromeos_dbg_ng', |
| 46 'linux_chromium_chromeos_msan_rel_ng', | 46 'linux_chromium_chromeos_msan_rel_ng', |
| 47 'linux_chromium_chromeos_variable', | 47 'linux_chromium_chromeos_variable', |
| 48 'linux_chromium_compile_rel_ng', | 48 'linux_chromium_compile_rel_ng', |
| 49 'linux_chromium_dbg_ng', | 49 'linux_chromium_dbg_ng', |
| 50 'linux_chromium_gn_upload', | 50 'linux_chromium_gn_upload', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'version': 'precise', | 204 'version': 'precise', |
| 205 'bits': '64', | 205 'bits': '64', |
| 206 'pool': 'android_amp', | 206 'pool': 'android_amp', |
| 207 } for i in range(225,228+1) | 207 } for i in range(225,228+1) |
| 208 ] | 208 ] |
| 209 | 209 |
| 210 return compile_slaves + test_cq_slaves + test_optional_slaves + amp_slaves | 210 return compile_slaves + test_cq_slaves + test_optional_slaves + amp_slaves |
| 211 | 211 |
| 212 | 212 |
| 213 slaves = linux() + android() | 213 slaves = linux() + android() |
| OLD | NEW |