Skip to content

Commit

Permalink
master/master.cfg: Build all changes to both stable and master
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuclaw committed Jun 18, 2018
1 parent 4c37020 commit b0a11ba
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ worker_map = {
builders = sorted(builder_map.iterkeys())
workers = sorted(worker_map.iterkeys())

branches = [
'master',
'stable',
]

####### WORKERS

Expand All @@ -72,16 +76,16 @@ c['protocols'] = {'pb': {'port': os.environ["BUILDMASTER_PORT"]}}

c['change_source'] = []
c['change_source'].append(changes.GitPoller(repourl='git://github.com/D-Programming-GDC/GDC.git',
branch='master',
branches=branches,
pollinterval=300,
workdir='gitpoller-workdir'))

####### SCHEDULERS

c['schedulers'] = []
c['schedulers'].append(schedulers.SingleBranchScheduler(name="all", branch='master',
treeStableTimer=60,
builderNames=builders))
c['schedulers'].append(schedulers.AnyBranchScheduler(name="all", branches=branches,
treeStableTimer=60,
builderNames=builders))
c['schedulers'].append(schedulers.ForceScheduler(name="force",
builderNames=builders))

Expand Down

0 comments on commit b0a11ba

Please sign in to comment.