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 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') | 10 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') |
11 cq_slaves = (range(111, 131) + range(162, 399) + range(427, 453) + | 11 cq_slaves = (range(111, 131) + range(162, 399) + range(427, 453) + |
12 range(493, 497) + range(506, 540) + range(590, 600) + | 12 range(493, 497) + range(506, 540) + range(590, 600) + |
13 range(621, 651) + range(779, 799) + range(800, 837) + | 13 range(621, 651) + range(779, 799) + range(800, 837) + |
14 range(841, 864) + range(878, 897) + range(909, 914) + | 14 range(841, 864) + range(878, 897) + range(909, 914) + |
15 range(1010, 1029)) | 15 range(1010, 1029)) |
16 cq_builders = [ | 16 cq_builders = [ |
17 'blimp_linux_dbg', | 17 'blimp_linux_dbg', |
18 'cast_shell_linux', | 18 'cast_shell_linux', |
| 19 'chromium_devtools', |
19 'chromium_presubmit', | 20 'chromium_presubmit', |
20 'linux_chromium_archive_rel_ng', | 21 'linux_chromium_archive_rel_ng', |
21 'linux_chromium_asan_rel_ng', | 22 'linux_chromium_asan_rel_ng', |
22 'linux_chromium_chromeos_asan_rel_ng', | 23 'linux_chromium_chromeos_asan_rel_ng', |
23 'linux_chromium_chromeos_compile_dbg_ng', | 24 'linux_chromium_chromeos_compile_dbg_ng', |
24 'linux_chromium_chromeos_ozone_rel_ng', | 25 'linux_chromium_chromeos_ozone_rel_ng', |
25 'linux_chromium_chromeos_rel_ng', | 26 'linux_chromium_chromeos_rel_ng', |
26 'linux_chromium_clobber_rel_ng', | 27 'linux_chromium_clobber_rel_ng', |
27 'linux_chromium_compile_dbg_ng', | 28 'linux_chromium_compile_dbg_ng', |
28 'linux_chromium_gn_chromeos_dbg', | 29 'linux_chromium_gn_chromeos_dbg', |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 'builder': ['linux_layout_tests_slimming_paint_v2'], | 185 'builder': ['linux_layout_tests_slimming_paint_v2'], |
185 'hostname': 'slave775-c4', | 186 'hostname': 'slave775-c4', |
186 'pool': 'linux_layout_tests_slimming_paint_v2', | 187 'pool': 'linux_layout_tests_slimming_paint_v2', |
187 } | 188 } |
188 ]) | 189 ]) |
189 | 190 |
190 return result | 191 return result |
191 | 192 |
192 | 193 |
193 slaves = linux() | 194 slaves = linux() |
OLD | NEW |