Buildbot: Add a scheduler for the master branch to run

This commit is contained in:
Mitchell Hashimoto 2011-11-12 13:18:19 -08:00
parent 5974fbcb16
commit aeae640c34
1 changed files with 8 additions and 1 deletions

View File

@ -3,5 +3,12 @@ This module contains the logic which returns the set of
schedulers to use for the build master.
"""
from buildbot.changes.filter import ChangeFilter
from buildbot.schedulers.basic import SingleBranchScheduler
def get_schedulers():
return []
full = SingleBranchScheduler(name="full",
change_filter=ChangeFilter(branch="master"),
treeStableTimer=60,
builderNames=["vagrant-master"])
return [full]