[Buildbot-commits] buildbot/docs/examples twisted_master.cfg,1.23,1.24

Brian Warner warner at users.sourceforge.net
Sun Nov 7 20:09:09 UTC 2004


Update of /cvsroot/buildbot/buildbot/docs/examples
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12002/docs/examples

Modified Files:
	twisted_master.cfg 
Log Message:
update to match current usage on the Twisted buildbot


Index: twisted_master.cfg
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/examples/twisted_master.cfg,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- twisted_master.cfg	1 Oct 2004 01:56:29 -0000	1.23
+++ twisted_master.cfg	7 Nov 2004 20:09:07 -0000	1.24
@@ -20,6 +20,7 @@
 from buildbot.status import html, words, client, mail
 
 import private # holds passwords
+reload(private) # make it possible to change the contents without a restart
 
 # I set really=False when testing this configuration at home
 really = True
@@ -141,8 +142,10 @@
 b23osx = {'name': "OS-X",
           'slavename': "bot-OSX",
           'builddir': "OSX-full2.3",
-          'factory': FullTwistedBuildFactory(svnurl,
-                                             python="python2.3"),
+          'factory': TwistedReactorsBuildFactory(svnurl,
+                                                 python="python2.3",
+                                                 reactors=["default", "cf"],
+                                                 ),
           }
 builders.append(b23osx)
 
@@ -159,12 +162,12 @@
 builders.append(b22w32)
 
 b23bsd = {'name': "freebsd",
-          'slavename': "bot-freebsd",
+          'slavename': "bot-dialtone",
           'builddir': "bsd-full2.2",
           'factory': TwistedReactorsBuildFactory(svnurl,
                                                  python="python2.3",
                                                  reactors=["default",
-                                                           #"kqueue",
+                                                           "kqueue",
                                                            ]),
           }
 builders.append(b23bsd)
@@ -199,7 +202,8 @@
 c['interlocks'] = [("do-deb", ["full-2.2"], ["debuild"])]
 c['status'].append(client.PBListener(9936))
 m = mail.MailNotifier(fromaddr="buildbot at twistedmatrix.com",
-                      sendToInterestedUsers=False,
+                      builders=["quick", "full-2.2", "full-2.3", "full-2.4"],
+                      sendToInterestedUsers=True,
 		      extraRecipients=["warner at lothar.com"],
 		      mode="problem",
 		      )





More information about the Commits mailing list