| 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 for vm in [3, 4, 5, 26, 27, 28, 29]: | 343 for vm in [3, 4, 5, 26, 27, 28, 29]: |
| 344 slaves.append({ | 344 slaves.append({ |
| 345 'master': 'V8', | 345 'master': 'V8', |
| 346 'builder': LINUX64_TESTERS + LINUX32_TESTERS, | 346 'builder': LINUX64_TESTERS + LINUX32_TESTERS, |
| 347 'hostname': 'slave%d-c3' % vm, | 347 'hostname': 'slave%d-c3' % vm, |
| 348 'os': 'linux', | 348 'os': 'linux', |
| 349 'version': 'precise', | 349 'version': 'precise', |
| 350 'bits': '64', | 350 'bits': '64', |
| 351 }) | 351 }) |
| 352 | 352 |
| 353 for bot in [6, 7, 10]: | 353 for bot in [10]: |
| 354 slaves.append({ | 354 slaves.append({ |
| 355 'master': 'V8', | 355 'master': 'V8', |
| 356 'builder': [ | 356 'builder': [ |
| 357 'V8 Linux - debug - avx2', | 357 'V8 Linux - debug - avx2', |
| 358 'V8 Linux64 - avx2', | 358 'V8 Linux64 - avx2', |
| 359 'V8 Linux64 - debug - avx2', | 359 'V8 Linux64 - debug - avx2', |
| 360 ], | 360 ], |
| 361 'hostname': 'build%d-m3' % bot, | 361 'hostname': 'build%d-m3' % bot, |
| 362 'os': 'linux', | 362 'os': 'linux', |
| 363 'version': 'trusty', | 363 'version': 'trusty', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 | 452 |
| 453 slaves.append({ | 453 slaves.append({ |
| 454 'master': 'V8', | 454 'master': 'V8', |
| 455 'builder': ['V8 Win32 - debug'], | 455 'builder': ['V8 Win32 - debug'], |
| 456 'hostname': 'slave83-c3', | 456 'hostname': 'slave83-c3', |
| 457 'os': 'linux', | 457 'os': 'linux', |
| 458 'version': 'precise', | 458 'version': 'precise', |
| 459 'bits': '64', | 459 'bits': '64', |
| 460 'subdir': str(7), | 460 'subdir': str(7), |
| 461 }) | 461 }) |
| OLD | NEW |