| 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)) + range(783, 788)]) |
| 15 cq_builders = [ | 15 cq_builders = [ |
| 16 'mac_chromium_compile_dbg_ng', | 16 'mac_chromium_compile_dbg_ng', |
| 17 'mac_chromium_gyp_rel', | 17 'mac_chromium_gyp_rel', |
| 18 'mac_chromium_rel_ng', | 18 'mac_chromium_rel_ng', |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 optional0_slaves = ['vm%d-m4' % i for i in ([713, 645, 646, 647, 648] + | 21 optional0_slaves = ['vm%d-m4' % i for i in [713, 645, 646, 647, 648]] |
| 22 range(783, 788))] | |
| 23 optional0_builders = [ | 22 optional0_builders = [ |
| 24 'mac_chromium_dbg_ng', | 23 'mac_chromium_dbg_ng', |
| 25 'mac_chromium_gyp_dbg', | 24 'mac_chromium_gyp_dbg', |
| 26 'mac_chromium_gn_upload', | 25 'mac_chromium_gn_upload', |
| 27 'mac_upload_clang', | 26 'mac_upload_clang', |
| 28 'mac_optional_gpu_tests_rel', | 27 'mac_optional_gpu_tests_rel', |
| 29 ] | 28 ] |
| 30 | 29 |
| 31 optional1_slaves = ['vm723-m4'] | 30 optional1_slaves = ['vm723-m4'] |
| 32 optional1_builders = [ | 31 optional1_builders = [ |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 'hostname': 'vm667-m4', | 223 'hostname': 'vm667-m4', |
| 225 'os': 'mac', | 224 'os': 'mac', |
| 226 'version': '10.10', | 225 'version': '10.10', |
| 227 }, | 226 }, |
| 228 ] | 227 ] |
| 229 | 228 |
| 230 return compile_slaves_dbg + compile_slaves_rel + extra_builders | 229 return compile_slaves_dbg + compile_slaves_rel + extra_builders |
| 231 | 230 |
| 232 | 231 |
| 233 slaves = mac() + ios() | 232 slaves = mac() + ios() |
| OLD | NEW |