Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2016 The Chromium Authors. All rights reserved. | 4 # Copyright 2016 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 |
| 11 slaves = [ | 11 slaves = [ |
| 12 { | 12 { |
| 13 'master': 'V8Ports', | 13 'master': 'V8Ports', |
| 14 'builder': ['V8 Linux - s390 - sim', 'V8 Linux - s390x - sim'], | |
| 15 'hostname': 'slave26-c3', | |
|
Michael Achenbach
2016/04/06 14:21:13
Removed that slave from client.v8 here:
https://co
| |
| 16 'os': 'linux', | |
| 17 'version': 'trusty', | |
| 18 'bits': '64', | |
| 19 }, | |
| 20 { | |
| 21 'master': 'V8Ports', | |
| 14 'builder': ['V8 Linux - x87 - nosnap - debug builder'], | 22 'builder': ['V8 Linux - x87 - nosnap - debug builder'], |
| 15 'hostname': 'slave5-c3', | 23 'hostname': 'slave5-c3', |
| 16 'os': 'linux', | 24 'os': 'linux', |
| 17 'version': 'trusty', | 25 'version': 'trusty', |
| 18 'bits': '64', | 26 'bits': '64', |
| 19 }, | 27 }, |
| 20 { | 28 { |
| 21 'master': 'V8Ports', | 29 'master': 'V8Ports', |
| 22 'builder': ['V8 Linux - x87 - nosnap - debug'], | 30 'builder': ['V8 Linux - x87 - nosnap - debug'], |
| 23 'hostname': 'vm349-m3', | 31 'hostname': 'vm349-m3', |
| 24 'os': 'linux', | 32 'os': 'linux', |
| 25 'version': 'precise', | 33 'version': 'precise', |
| 26 'bits': '32', | 34 'bits': '32', |
| 27 }, | 35 }, |
| 28 ] | 36 ] |
| OLD | NEW |