Making the old bots also trigger on source changes.

The old scheduler was missing the branch configuration, that was started being used as a consequence of adapting the Chromium Buildbot scripts.

TBR=phoglund
BUG=None
TEST=Tested on live master+slaves with manual edits.

Review URL: https://webrtc-codereview.appspot.com/576012

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2250 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org 2012-05-16 12:00:26 +00:00
parent 7e4a72a78a
commit fbfbdbe9ea
2 changed files with 1 additions and 2 deletions

View File

@ -37,7 +37,7 @@ master_source_cfg.ConfigureChangeSource(config, c)
####### SCHEDULERS
from buildbot.scheduler import Scheduler
webrtc_scheduler = Scheduler(name='all', branch=None,
webrtc_scheduler = Scheduler(name='all', branch='trunk',
builderNames=['Win32Debug',
'Win32Release',
'MacOS32DBG',

View File

@ -14,7 +14,6 @@ __author__ = 'kjellander@webrtc.org (Henrik Kjellander)'
from buildbot.schedulers import timed
from master import master_config
from webrtc_buildbot import webrtc_factory
from webrtc_buildbot import webrtc_chromium_factory
# Used to put builders into different categories by the Helper class.