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 linux_arm_testers = [9] | 10 linux_arm_testers = [9] |
(...skipping 13 matching lines...) Expand all Loading... |
24 'linux_chromium_chromeos_compile_dbg_ng', | 24 'linux_chromium_chromeos_compile_dbg_ng', |
25 'linux_chromium_chromeos_ozone_rel_ng', | 25 'linux_chromium_chromeos_ozone_rel_ng', |
26 'linux_chromium_chromeos_rel_ng', | 26 'linux_chromium_chromeos_rel_ng', |
27 'linux_chromium_clobber_rel_ng', | 27 'linux_chromium_clobber_rel_ng', |
28 'linux_chromium_compile_dbg_ng', | 28 'linux_chromium_compile_dbg_ng', |
29 'linux_chromium_gn_chromeos_dbg', | 29 'linux_chromium_gn_chromeos_dbg', |
30 'linux_chromium_gn_chromeos_rel', | 30 'linux_chromium_gn_chromeos_rel', |
31 'linux_chromium_gn_dbg', | 31 'linux_chromium_gn_dbg', |
32 'linux_chromium_gn_rel', | 32 'linux_chromium_gn_rel', |
33 'linux_chromium_rel_ng', | 33 'linux_chromium_rel_ng', |
| 34 'ned_tests_rel_ng', |
34 ] | 35 ] |
35 cq_builders += [ | 36 cq_builders += [ |
36 'chromeos_%s_chromium_compile_only_ng' % (board,) | 37 'chromeos_%s_chromium_compile_only_ng' % (board,) |
37 for board in ('x86-generic', 'amd64-generic', 'daisy') | 38 for board in ('x86-generic', 'amd64-generic', 'daisy') |
38 ] | 39 ] |
39 | 40 |
40 optional_slaves = [568, 866, 867] + range(714, 719) | 41 optional_slaves = [568, 866, 867] + range(714, 719) |
41 optional_builders = [ | 42 optional_builders = [ |
42 'Chromium Linux Codesearch Builder', | 43 'Chromium Linux Codesearch Builder', |
43 'ChromiumOS Codesearch Builder', | 44 'ChromiumOS Codesearch Builder', |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 'os': 'linux', | 224 'os': 'linux', |
224 'version': 'precise', | 225 'version': 'precise', |
225 'bits': '64', | 226 'bits': '64', |
226 } for i in range(225,228+1) | 227 } for i in range(225,228+1) |
227 ] | 228 ] |
228 | 229 |
229 return compile_slaves + test_cq_slaves + test_optional_slaves + amp_slaves | 230 return compile_slaves + test_cq_slaves + test_optional_slaves + amp_slaves |
230 | 231 |
231 | 232 |
232 slaves = linux() + android() | 233 slaves = linux() + android() |
OLD | NEW |