Buildbot: Add a scheduler for the master branch to run
This commit is contained in:
parent
5974fbcb16
commit
aeae640c34
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue