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 def distribute_slaves(slave_numbers, builders, os_ver, pool=None, gce=False): | 7 def distribute_slaves(slave_numbers, builders, os_ver, pool=None, gce=False): |
8 hostname_format = 'vm%d-m4' if not gce else 'slave%d-c4' | 8 hostname_format = 'vm%d-m4' if not gce else 'slave%d-c4' |
9 return [ | 9 return [ |
10 { | 10 { |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 optional_pool = optional_pool_chromium + optional_pool_gn | 89 optional_pool = optional_pool_chromium + optional_pool_gn |
90 | 90 |
91 win8_slaves = ([115, 168, 722, 798, 799] + range(384, 399) + | 91 win8_slaves = ([115, 168, 722, 798, 799] + range(384, 399) + |
92 range(408, 422) + range(468, 495) + | 92 range(408, 422) + range(468, 495) + |
93 range(724, 738) + range(801, 804)) | 93 range(724, 738) + range(801, 804)) |
94 win8_builders = [ | 94 win8_builders = [ |
95 'win8_chromium_ng', | 95 'win8_chromium_ng', |
96 'win8_chromium_gn_dbg', | 96 'win8_chromium_gn_dbg', |
97 'win8_chromium_gn_upload', | 97 'win8_chromium_gn_upload', |
98 'win10_chromium_rel_ng', # Moved off of GCE for VS 2015 compat | 98 'win10_chromium_x64_rel_ng', |
99 ] | 99 ] |
100 win8_pool = distribute_slaves(win8_slaves, win8_builders, 'win8', 'win8') | 100 win8_pool = distribute_slaves(win8_slaves, win8_builders, 'win8', 'win8') |
101 | 101 |
102 win_pgo_pool = [ | 102 win_pgo_pool = [ |
103 { | 103 { |
104 'master': 'TryServerChromiumWin', | 104 'master': 'TryServerChromiumWin', |
105 'builder': ['win_pgo'], | 105 'builder': ['win_pgo'], |
106 'hostname': 'build44-m4', | 106 'hostname': 'build44-m4', |
107 'os': 'win', | 107 'os': 'win', |
108 'version': 'win7', | 108 'version': 'win7', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 cq_pool + | 150 cq_pool + |
151 optional_pool + | 151 optional_pool + |
152 win8_pool + | 152 win8_pool + |
153 win_pgo_pool + | 153 win_pgo_pool + |
154 experimental_pool + | 154 experimental_pool + |
155 clang_win_pool + | 155 clang_win_pool + |
156 clang_win_cq_pool) | 156 clang_win_cq_pool) |
157 | 157 |
158 | 158 |
159 slaves = windows() | 159 slaves = windows() |
OLD | NEW |