| # -*- python -*- |
| # ex: set syntax=python: |
| |
| # Copyright (c) 2006-2009 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, |
| #}, |
| |
| ### Experimental |
| { |
| 'master': 'Gatekeeper', |
| 'builder': 'Chromium Gatekeeper', |
| 'hostname': 'vm827-m1', |
| }, |
| { |
| 'master': 'Gatekeeper', |
| 'builder': 'Chromium Gatekeeper Failure', |
| 'hostname': 'vm837-m1', |
| }, |
| ] |