de2a76fcf9
- compatible with depot_tools try commands. - old build master is converted to use Chromium scripts, according to http://www.chromium.org/developers/testing/chromium-build-infrastructure/getting-the-buildbot-source/forking-your-buildbot - slaves can now be run out of a plain checkout, no local configuration needed. Also added files to make it possible to use tools as a separate checkout. BUG=None TEST=Runs on local machine with remote slaves. I've successfully submitted try jobs with both git try and gcl try commands. Review URL: https://webrtc-codereview.appspot.com/449011 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1945 4adac7df-926f-26a2-2b94-8c16560cd09d
71 lines
1.4 KiB
Python
71 lines
1.4 KiB
Python
# -*- python -*-
|
|
# ex: set syntax=python:
|
|
# Copyright (c) 2012 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.
|
|
|
|
# See master.experimental/slaves.cfg for documentation.
|
|
|
|
|
|
def linux():
|
|
return [
|
|
{
|
|
'master': 'TryServer',
|
|
'os': 'linux',
|
|
'version': 'lucid',
|
|
'bits': '64',
|
|
'builder': 'linux',
|
|
'hostname': 'webrtc-cb-linux-slave-11',
|
|
},
|
|
{
|
|
'master': 'TryServer',
|
|
'os': 'linux',
|
|
'version': 'lucid',
|
|
'bits': '64',
|
|
'builder': 'linux_rel',
|
|
'hostname': 'webrtc-cb-linux-slave-12',
|
|
},
|
|
]
|
|
|
|
def mac():
|
|
return [
|
|
{
|
|
'master': 'TryServer',
|
|
'os': 'mac',
|
|
'version': '10.7',
|
|
'bits': '64',
|
|
'builder': 'mac',
|
|
'hostname': 'dhcp-172-28-249-242',
|
|
},
|
|
{
|
|
'master': 'TryServer',
|
|
'os': 'mac',
|
|
'version': '10.7',
|
|
'bits': '64',
|
|
'builder': 'mac_rel',
|
|
'hostname': 'dhcp-172-28-249-244',
|
|
},
|
|
]
|
|
|
|
def windows():
|
|
return [
|
|
{
|
|
'master': 'TryServer',
|
|
'os': 'win',
|
|
'version': 'server2008',
|
|
'bits': '64',
|
|
'builder': 'win',
|
|
'hostname': 'webrtc-win-x64',
|
|
},
|
|
{
|
|
'master': 'TryServer',
|
|
'os': 'win',
|
|
'version': 'server2008',
|
|
'bits': '64',
|
|
'builder': 'win_rel',
|
|
'hostname': 'webrtc-win-x86',
|
|
},
|
|
]
|
|
|
|
slaves = linux() + mac() + windows()
|