[Buildbot-commits] buildbot/docs/examples twisted_master.cfg,1.36,1.37
Brian Warner
warner at users.sourceforge.net
Sun Oct 30 01:10:44 UTC 2005
Update of /cvsroot/buildbot/buildbot/docs/examples
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4984/docs/examples
Modified Files:
twisted_master.cfg
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-406
Creator: Brian Warner <warner at lothar.com>
update twisted_master.cfg
* docs/examples/twisted_master.cfg: don't double-fire the 'quick'
builder. Move the Try scheduler off to a separate port.
Index: twisted_master.cfg
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/examples/twisted_master.cfg,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- twisted_master.cfg 24 Oct 2005 22:42:03 -0000 1.36
+++ twisted_master.cfg 30 Oct 2005 01:10:42 -0000 1.37
@@ -196,13 +196,14 @@
# can auto-generate a list of all of them.
all_builders = [b['name'] for b in c['builders']]
all_builders.sort()
+all_builders.remove("quick")
## configure the schedulers
s_quick = Scheduler(name="quick", branch=None, treeStableTimer=30,
builderNames=["quick"])
s_all = Scheduler(name="all", branch=None, treeStableTimer=5*60,
builderNames=all_builders)
-s_try = Try_Userpass("try", all_builders, port=9988,
+s_try = Try_Userpass("try", all_builders, port=9989,
userpass=private.try_users)
c['schedulers'] = [s_quick, s_all, s_try]
More information about the Commits
mailing list