Skip to content

Commit

Permalink
BUILDBOT: Migrate from deprecated Scheduler to SingleBranchScheduler.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Nov 23, 2012
1 parent fa8d56d commit 3d348a5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions config/master.cfg
Expand Up @@ -855,20 +855,21 @@ c["slavePortnum"] = "tcp:9989:interface=127.0.0.1"

# Only fetch changes, these checkouts are used by all compile runs.

from buildbot.scheduler import Scheduler, Nightly, Triggerable
from buildbot.scheduler import Nightly, Triggerable
from buildbot.schedulers.basic import SingleBranchScheduler
from buildbot.changes.filter import ChangeFilter

s_master = Scheduler(name = "fetch-master",
s_master = SingleBranchScheduler(name = "fetch-master",
change_filter=ChangeFilter(repository = scumm_giturl, branch = scumm_branch_master),
treeStableTimer = 5,
builderNames = [ "fetch-master" ])

s_stable = Scheduler(name = "fetch-stable",
s_stable = SingleBranchScheduler(name = "fetch-stable",
change_filter=ChangeFilter(repository = scumm_giturl, branch = scumm_branch_stable),
treeStableTimer = 5,
builderNames = [ "fetch-stable" ])

s_tools_master = Scheduler(name = "fetch-tools-master",
s_tools_master = SingleBranchScheduler(name = "fetch-tools-master",
change_filter=ChangeFilter(repository = scumm_tools_giturl, branch = scumm_tools_branch_master),
treeStableTimer = 5,
builderNames = [ "fetch-tools-master" ])
Expand Down

0 comments on commit 3d348a5

Please sign in to comment.