Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # This is an list of dictionaries to describe slaves. | 8 # This is an list of dictionaries to describe slaves. |
| 9 # This list is intentionally flat to be easy to filter arbitrarily. | 9 # This list is intentionally flat to be easy to filter arbitrarily. |
| 10 | 10 |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 325 LINUX64_TESTERS = [ | 325 LINUX64_TESTERS = [ |
| 326 'V8 Linux64', | 326 'V8 Linux64', |
| 327 'V8 Linux64 - debug', | 327 'V8 Linux64 - debug', |
| 328 'V8 Linux64 - custom snapshot - debug', | 328 'V8 Linux64 - custom snapshot - debug', |
| 329 'V8 Linux64 - debug - greedy allocator', | 329 'V8 Linux64 - debug - greedy allocator', |
| 330 'V8 Linux64 GC Stress - custom snapshot', | 330 'V8 Linux64 GC Stress - custom snapshot', |
| 331 'V8 Linux - full debug', | 331 'V8 Linux - full debug', |
| 332 'V8 Fuzzer', | 332 'V8 Fuzzer', |
| 333 ] | 333 ] |
| 334 | 334 |
| 335 for vm in [110, 129, 180, 181, 182, 348, 350, 357, 364, 365]: | 335 for vm in [110, 129, 180, 181, 182, 348, 350, 357, 364]: |
|
Michael Achenbach
2015/09/04 12:19:06
Borrowing this guy until we get a new slave.
tandrii(chromium)
2015/09/04 12:30:56
hm, from where? :)
tandrii(chromium)
2015/09/04 12:51:07
ah, right. this is left column...
| |
| 336 slaves.append({ | 336 slaves.append({ |
| 337 'master': 'V8', | 337 'master': 'V8', |
| 338 'builder': LINUX32_TESTERS, | 338 'builder': LINUX32_TESTERS, |
| 339 'hostname': 'vm%d-m3' % vm, | 339 'hostname': 'vm%d-m3' % vm, |
| 340 'os': 'linux', | 340 'os': 'linux', |
| 341 'version': 'precise', | 341 'version': 'precise', |
| 342 'bits': '32', | 342 'bits': '32', |
| 343 }) | 343 }) |
| 344 | 344 |
| 345 for vm in [335, 368, 371]: | 345 for vm in [335, 368, 371]: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 416 'V8 Mac - debug', | 416 'V8 Mac - debug', |
| 417 'V8 Mac64', | 417 'V8 Mac64', |
| 418 'V8 Mac64 - debug', | 418 'V8 Mac64 - debug', |
| 419 'V8 Mac64 - xcode', | 419 'V8 Mac64 - xcode', |
| 420 ], | 420 ], |
| 421 'hostname': 'vm%d-m3' % vm, | 421 'hostname': 'vm%d-m3' % vm, |
| 422 'os': 'mac', | 422 'os': 'mac', |
| 423 'version': '10.6', | 423 'version': '10.6', |
| 424 'bits': '64', | 424 'bits': '64', |
| 425 }) | 425 }) |
| OLD | NEW |