| # -*- python -*- |
| # ex: set syntax=python: |
| |
| # Copyright 2013 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| # This is an list of dictionaries to describe slaves. |
| # This list is intentionally flat to be easy to filter arbitrarily. |
| |
| slaves = [ |
| ### Sample |
| #{ |
| # Chromium, TryServer, etc. |
| #'master': string, |
| |
| # Builder that this slave connects to. |
| #'builder': string, |
| |
| # (Optional) Host name of the slave. |
| #'hostname': string, |
| |
| # (Optional) Slave name in buildbot (not the builder display name!), |
| # Defaults to hostname if set. |
| #'slavename': string, |
| |
| # (Optional) Specific part of the OS type. 'xp', 'vista', 'jaunty', |
| # 'win7', etc. |
| #'os': string, |
| |
| # (Optional) VM host if a vm. |
| #'vm_host': string, |
| |
| # (Optional) VM datastore if a vm. |
| #'vm_host_datastore': number, |
| |
| # (Optional) Random notes. |
| #'notes': string, |
| #}, |
| { |
| 'master': 'V8Branches', |
| 'builder': 'Auto-tag', |
| 'hostname': 'vm365-m3', |
| 'os': 'linux', |
| 'version': 'precise', |
| 'bits': '32', |
| }, |
| { |
| 'master': 'V8Branches', |
| 'builder': ['V8 arm - sim - stable branch', |
| 'V8 arm - sim - stable branch - debug', |
| 'V8 arm - sim - beta branch', |
| 'V8 arm - sim - beta branch - debug'], |
| 'hostname': 'vm328-m3', |
| 'os': 'linux', |
| 'version': 'precise', |
| 'bits': '64', |
| }, |
| ] |
| |
| # TODO(machenbach): Use 327 for crbug.com/534360. |
| for vm in [327, 336]: |
| slaves.append({ |
| 'master': 'V8Branches', |
| 'builder': ['V8 Linux - stable branch', |
| 'V8 Linux - stable branch - debug', |
| 'V8 Linux - beta branch', |
| 'V8 Linux - beta branch - debug', |
| 'V8 Linux64 - stable branch', |
| 'V8 Linux64 - stable branch - debug', |
| 'V8 Linux64 - beta branch', |
| 'V8 Linux64 - beta branch - debug', |
| 'V8 mipsel - sim - stable branch', |
| 'V8 mips64el - sim - stable branch', |
| 'V8 ppc - sim - stable branch', |
| 'V8 ppc64 - sim - stable branch', |
| 'V8 s390 - sim - stable branch', |
| 'V8 s390x - sim - stable branch', |
| 'V8 mipsel - sim - beta branch', |
| 'V8 mips64el - sim - beta branch', |
| 'V8 ppc - sim - beta branch', |
| 'V8 ppc64 - sim - beta branch', |
| 'V8 s390 - sim - beta branch', |
| 'V8 s390x - sim - beta branch'], |
| 'hostname': 'vm%d-m3' % vm, |
| 'os': 'linux', |
| 'version': 'precise', |
| 'bits': '64', |
| }) |
| |
| |