[Buildbot-commits] buildbot/docs/examples twisted_master.cfg,1.32,1.33
Brian Warner
warner at users.sourceforge.net
Sat Oct 22 21:10:07 UTC 2005
Update of /cvsroot/buildbot/buildbot/docs/examples
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14190/docs/examples
Modified Files:
twisted_master.cfg
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-352
Creator: Brian Warner <warner at lothar.com>
remove old freshcvs stuff from twisted_master.cfg
* buildbot/status/words.py (IrcStatusBot.command_FORCE): note that
the 'force' command requires python2.3, for the shlex.split method
* docs/examples/twisted_master.cfg: remove old freshcvs stuff,
since we don't use it anymore. The Twisted buildbot uses a
PBChangeSource now.
Index: twisted_master.cfg
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/examples/twisted_master.cfg,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- twisted_master.cfg 21 Oct 2005 08:14:52 -0000 1.32
+++ twisted_master.cfg 22 Oct 2005 21:10:05 -0000 1.33
@@ -12,10 +12,10 @@
import os.path
from buildbot import master
-from buildbot.changes.freshcvs import FreshCVSSource
-from buildbot.changes.freshcvsmail import FCMaildirSource
from buildbot.changes.pb import PBChangeSource
from buildbot.scheduler import Scheduler
+from buildbot.process import step
+from buildbot.process.factory import s
from buildbot.process.process_twisted import \
QuickTwistedBuildFactory, \
FullTwistedBuildFactory, \
@@ -30,8 +30,6 @@
# I set really=False when testing this configuration at home
really = True
-useFreshCVS = False
-useMaildir = False
usePBChangeSource = True
@@ -40,21 +38,6 @@
c['bots'].append((bot, private.bot_passwords[bot]))
c['sources'] = []
-if useFreshCVS:
- if really:
- fc_source = FreshCVSSource("cvs.twistedmatrix.com",
- private.freshcvs_port,
- private.freshcvs_perspective,
- private.freshcvs_password,
- "cvstoys.notify",
- prefix="Twisted/")
- c['sources'].append(fc_source)
-
-if useMaildir:
- # use with: echo "$BASEDIR/cvsmail/" >~/.qmail
- source = FCMaildirSource(os.path.join(basedir, "cvsmail"),
- prefix="Twisted/")
- c['sources'].append(source)
# the Twisted buildbot currently uses the contrib/svn_buildbot.py script.
# This makes a TCP connection to the ChangeMaster service to push Changes
More information about the Commits
mailing list