Chromium Code Reviews| 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') |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 'ChromiumOS Codesearch Builder', # ChromiumOS_Codesearch_Builder | 52 'ChromiumOS Codesearch Builder', # ChromiumOS_Codesearch_Builder |
| 53 'closure_compilation', # linux | 53 'closure_compilation', # linux |
| 54 'linux_chromium_chromeos_compile_rel_ng', # linux_chromeos | 54 'linux_chromium_chromeos_compile_rel_ng', # linux_chromeos |
| 55 'linux_chromium_chromeos_dbg_ng', # linux_chromeos | 55 'linux_chromium_chromeos_dbg_ng', # linux_chromeos |
| 56 'linux_chromium_chromeos_variable', # linux_chromeos | 56 'linux_chromium_chromeos_variable', # linux_chromeos |
| 57 'linux_chromium_compile_dbg_32_ng', # linux | 57 'linux_chromium_compile_dbg_32_ng', # linux |
| 58 'linux_chromium_compile_rel_ng', # linux | 58 'linux_chromium_compile_rel_ng', # linux |
| 59 'linux_chromium_dbg_ng', # linux | 59 'linux_chromium_dbg_ng', # linux |
| 60 'linux_chromium_dbg_32_ng', # linux | 60 'linux_chromium_dbg_32_ng', # linux |
| 61 'linux_chromium_msan_rel_ng', # linux_msan | 61 'linux_chromium_msan_rel_ng', # linux_msan |
| 62 'linux_chromium_variable', # linux | |
| 63 'linux_chromiumos_full_variable', # linux_chromeos | 62 'linux_chromiumos_full_variable', # linux_chromeos |
| 64 'linux_site_isolation', # linux | 63 'linux_site_isolation', # linux |
| 65 ] | 64 ] |
| 66 # Contains all the optional builders with smaller slavebuilddir not | 65 # Contains all the optional builders with smaller slavebuilddir not |
| 67 # covered by optional_builders1. | 66 # covered by optional_builders1. |
| 68 optional_builders2 = [ | 67 optional_builders2 = [ |
| 69 'chromeos_%s_variable' % (board,) # chromeos_<board> | 68 'chromeos_%s_variable' % (board,) # chromeos_<board> |
| 70 for board in chromeos_boards | 69 for board in chromeos_boards |
| 71 ] | 70 ] |
| 72 optional_builders2 += [ | 71 optional_builders2 += [ |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 92 'linux_nacl_sdk_build', # linux_nacl_sdk_build | 91 'linux_nacl_sdk_build', # linux_nacl_sdk_build |
| 93 'linux_optional_gpu_tests_rel', # linux_nacl_sdk_build | 92 'linux_optional_gpu_tests_rel', # linux_nacl_sdk_build |
| 94 ] | 93 ] |
| 95 | 94 |
| 96 # Super beefy machines. | 95 # Super beefy machines. |
| 97 optional_highmem_slaves = [904, 905] | 96 optional_highmem_slaves = [904, 905] |
| 98 optional_highmem_builders = [ | 97 optional_highmem_builders = [ |
| 99 'linux_upload_clang', | 98 'linux_upload_clang', |
| 100 'linux_chromium_cfi_rel_ng', | 99 'linux_chromium_cfi_rel_ng', |
| 101 ] | 100 ] |
| 101 optional_highcpu_slaves = [799] | |
|
stgao
2016/06/15 06:12:39
I guess we want to dedicate this slave to Findit a
lijeffrey
2016/06/15 18:10:40
Done.
| |
| 102 optional_highcpu_builders = [ # slavebuilddir | |
| 103 'linux_chromium_variable', # linux | |
| 104 ] | |
| 102 | 105 |
| 103 # Set up normal slaves. | 106 # Set up normal slaves. |
| 104 result = [] | 107 result = [] |
| 105 for i, slave in enumerate(cq_slaves): | 108 for i, slave in enumerate(cq_slaves): |
| 106 result.append({ | 109 result.append({ |
| 107 'master': 'TryServerChromiumLinux', | 110 'master': 'TryServerChromiumLinux', |
| 108 'os': 'linux', | 111 'os': 'linux', |
| 109 'version': 'precise', | 112 'version': 'precise', |
| 110 'bits': '64', | 113 'bits': '64', |
| 111 'builder': cq_builders, | 114 'builder': cq_builders, |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 136 for slave in optional_highmem_slaves: | 139 for slave in optional_highmem_slaves: |
| 137 result.append({ | 140 result.append({ |
| 138 'master': 'TryServerChromiumLinux', | 141 'master': 'TryServerChromiumLinux', |
| 139 'os': 'linux', | 142 'os': 'linux', |
| 140 'version': 'precise', | 143 'version': 'precise', |
| 141 'bits': '64', | 144 'bits': '64', |
| 142 'builder': optional_highmem_builders, | 145 'builder': optional_highmem_builders, |
| 143 'hostname': 'slave%d-c4' % slave, | 146 'hostname': 'slave%d-c4' % slave, |
| 144 'pool': 'linux_optional_highmem', | 147 'pool': 'linux_optional_highmem', |
| 145 }) | 148 }) |
| 149 for slave in optional_highcpu_slaves: | |
| 150 result.append({ | |
| 151 'master': 'TryServerChromiumLinux', | |
| 152 'os': 'linux', | |
| 153 'version': 'precise', | |
| 154 'bits': '64', | |
| 155 'builder': optional_highcpu_builders, | |
| 156 'hostname': 'slave%d-c4' % slave, | |
| 157 'pool': 'linux_optional_highcpu', | |
| 158 }) | |
| 146 | 159 |
| 147 # Bot for linux_chromium_browser_side_navigation_rel. | 160 # Bot for linux_chromium_browser_side_navigation_rel. |
| 148 result.extend([ | 161 result.extend([ |
| 149 { | 162 { |
| 150 'master': 'TryServerChromiumLinux', | 163 'master': 'TryServerChromiumLinux', |
| 151 'os': 'linux', | 164 'os': 'linux', |
| 152 'version': 'precise', | 165 'version': 'precise', |
| 153 'bits': '64', | 166 'bits': '64', |
| 154 'builder': ['linux_chromium_browser_side_navigation_rel'], | 167 'builder': ['linux_chromium_browser_side_navigation_rel'], |
| 155 'hostname': 'slave914-c4', | 168 'hostname': 'slave914-c4', |
| 156 'pool': 'linux_chromium_browser_side_navigation_rel', | 169 'pool': 'linux_chromium_browser_side_navigation_rel', |
| 157 } | 170 } |
| 158 ]) | 171 ]) |
| 159 | 172 |
| 160 return result | 173 return result |
| 161 | 174 |
| 162 | 175 |
| 163 slaves = linux() | 176 slaves = linux() |
| OLD | NEW |