Skip to content

Commit

Permalink
Add a 'try' scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
fdabrandao committed Sep 1, 2016
1 parent d7c9de1 commit 14d9d8b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions support/buildbot/master.cfg
Expand Up @@ -48,6 +48,7 @@ from buildbot.steps.shell import Test
from buildbot.steps.transfer import FileUpload
from buildbot.schedulers.basic import SingleBranchScheduler
from buildbot.schedulers.forcesched import ForceScheduler
from buildbot.schedulers.trysched import Try_Userpass
from buildbot.changes import filter
from twisted.python import log
import os, re
Expand Down Expand Up @@ -100,6 +101,11 @@ def add_schedulers(project, builders):
c['schedulers'].append(ForceScheduler(
name=project + "-force",
builderNames=builders))
c['schedulers'].append(
Try_Userpass(name=project + 'try',
builderNames=builders,
port=5555,
userpass=[(project, project)]))

class Upload:
def __init__(self, path, **kwargs):
Expand Down Expand Up @@ -331,3 +337,6 @@ c['buildbotURL'] = "http://localhost:8010/"
# state. You can leave this at its default for all but the largest
# installations.
c['db_url'] = "sqlite:///state.sqlite"



0 comments on commit 14d9d8b

Please sign in to comment.