OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # Pool some builders over multiple slave machines, as a WebRTC checkout is only | 5 # Pool some builders over multiple slave machines, as a WebRTC checkout is only |
6 # about 1.5 GB including source code and compiled artifacts. | 6 # about 1.5 GB including source code and compiled artifacts. |
7 slaves = [ | 7 slaves = [ |
8 # Linux 32-bit. | 8 # Linux 32-bit. |
9 { | 9 { |
10 'master': 'WebRTC', | 10 'master': 'WebRTC', |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 'os': 'win', | 167 'os': 'win', |
168 'version': 'win7', | 168 'version': 'win7', |
169 'bits': '64', | 169 'bits': '64', |
170 'builder': [ | 170 'builder': [ |
171 'Win32 Debug', | 171 'Win32 Debug', |
172 'Win32 Release', | 172 'Win32 Release', |
173 'Win64 Debug', | 173 'Win64 Debug', |
174 'Win64 Release', | 174 'Win64 Release', |
175 'Win64 Debug (GN)', | 175 'Win64 Debug (GN)', |
176 'Win64 Release (GN)', | 176 'Win64 Release (GN)', |
177 'Win SyzyASan', | |
178 ], | 177 ], |
179 'hostname': 'vm%d-m3' % i, | 178 'hostname': 'vm%d-m3' % i, |
180 } for i in [162, 168, 169, 193] | 179 } for i in [162, 168, 169, 193] |
181 ] + [ | 180 ] + [ |
182 { | 181 { |
183 'master': 'WebRTC', | 182 'master': 'WebRTC', |
184 'os': 'win', | 183 'os': 'win', |
185 'version': 'win7', | 184 'version': 'win7', |
186 'bits': '64', | 185 'bits': '64', |
187 'builder': [ | 186 'builder': [ |
(...skipping 17 matching lines...) Expand all Loading... |
205 'master': 'WebRTC', | 204 'master': 'WebRTC', |
206 'os': 'win', | 205 'os': 'win', |
207 'version': 'win7', | 206 'version': 'win7', |
208 'bits': '64', | 207 'bits': '64', |
209 'builder': [ | 208 'builder': [ |
210 'Win32 Release [large tests]', | 209 'Win32 Release [large tests]', |
211 ], | 210 ], |
212 'hostname': 'chromeperf90', | 211 'hostname': 'chromeperf90', |
213 } | 212 } |
214 ] | 213 ] |
OLD | NEW |