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 mac(): | 9 def mac(): |
10 cq_slaves = ( | 10 cq_slaves = ( |
11 ['vm%d-m4' % i for i in ([213, 256, 257, 258, 902, 903, 1000] + | 11 ['vm%d-m4' % i for i in ([213, 256, 257, 258, 902, 903, 1000] + |
12 range(277, 300) + range(552, 555) + | 12 range(277, 300) + range(552, 555) + |
13 range(682, 711) + range(860, 870) + | 13 range(682, 711) + range(860, 870) + |
14 range(969, 987))]) | 14 range(969, 987))]) |
15 cq_builders = [ | 15 cq_builders = [ |
16 'mac_chromium_asan_rel_ng', | |
17 'mac_chromium_compile_dbg_ng', | 16 'mac_chromium_compile_dbg_ng', |
| 17 'mac_chromium_rel_ng', |
18 'mac_chromium_gn_rel', | 18 'mac_chromium_gn_rel', |
19 'mac_chromium_rel_ng', | |
20 ] | 19 ] |
21 | 20 |
22 optional1_slaves = ['vm%d-m4' % i for i in [713, 723]] | 21 optional1_slaves = ['vm%d-m4' % i for i in [713, 723]] |
23 optional1_builders = [ | 22 optional1_builders = [ |
24 'mac_chromium_dbg_ng', | 23 'mac_chromium_dbg_ng', |
25 'mac_chromium_gn_dbg', | 24 'mac_chromium_gn_dbg', |
26 'mac_chromium_gn_upload', | 25 'mac_chromium_gn_upload', |
27 'mac_nacl_sdk', | 26 'mac_nacl_sdk', |
28 'mac_nacl_sdk_build', | 27 'mac_nacl_sdk_build', |
29 ] | 28 ] |
30 | 29 |
31 optional2_slaves = ['vm%d-m4' % i for i in [1025, 1026]] | 30 optional2_slaves = ['vm%d-m4' % i for i in [1025, 1026]] |
32 optional2_builders = [ | 31 optional2_builders = [ |
33 'mac_chromium_10.6_rel_ng', | 32 'mac_chromium_10.6_rel_ng', |
34 'mac_chromium_archive_rel_ng', | 33 'mac_chromium_archive_rel_ng', |
| 34 'mac_chromium_asan_rel_ng', |
35 'mac_chromium_compile_rel_ng', | 35 'mac_chromium_compile_rel_ng', |
36 'mac_deterministic', | 36 'mac_deterministic', |
37 'mac_chromium_variable', | 37 'mac_chromium_variable', |
38 ] | 38 ] |
39 | 39 |
40 out = [] | 40 out = [] |
41 out.extend( | 41 out.extend( |
42 { | 42 { |
43 'master': 'TryServerChromiumMac', | 43 'master': 'TryServerChromiumMac', |
44 'builder': cq_builders, | 44 'builder': cq_builders, |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 } | 132 } |
133 ] | 133 ] |
134 | 134 |
135 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on | 135 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on |
136 # the bots. | 136 # the bots. |
137 | 137 |
138 return compile_slaves | 138 return compile_slaves |
139 | 139 |
140 | 140 |
141 slaves = mac() + ios() | 141 slaves = mac() + ios() |
OLD | NEW |