Skip to content
This repository has been archived by the owner on Feb 17, 2018. It is now read-only.

Commit

Permalink
fix scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma committed Mar 21, 2012
1 parent fac7db0 commit 16306cf
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,14 @@ c['change_source'].append(GitPoller('git://github.com/magit/magit.git',
# Configure the Schedulers, which decide how to react to incoming changes. In this
# case, just kick off a 'runtests' build

from buildbot.scheduler import Scheduler
from buildbot.schedulers.basic import SingleBranchScheduler
from buildbot.changes import filter
c['schedulers'] = []
c['schedulers'].append(Scheduler(name="master", branch='master',
treeStableTimer=10,
builderNames=["master:linux-oneiric"]))
c['schedulers'].append(SingleBranchScheduler(
name="master",
change_filter=filter.ChangeFilter(branch='master'),
treeStableTimer=10,
builderNames=["master:linux-oneiric"]))

####### BUILDERS

Expand Down

0 comments on commit 16306cf

Please sign in to comment.