[Buildbot-commits] buildbot/docs/examples twisted_master.cfg, 1.44, 1.45

Brian Warner warner at users.sourceforge.net
Fri Sep 22 05:58:01 UTC 2006


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

Modified Files:
	twisted_master.cfg 
Log Message:
[project @ update twisted_master.cfg to current usage]

Original author: warner at lothar.com
Date: 2006-09-22 05:57:24

Index: twisted_master.cfg
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/examples/twisted_master.cfg,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- twisted_master.cfg	22 Sep 2006 05:46:28 -0000	1.44
+++ twisted_master.cfg	22 Sep 2006 05:57:58 -0000	1.45
@@ -123,6 +123,26 @@
        }
 builders.append(b24)
 
+bosx24 = {'name': 'osx-2.4',
+          'slavenames': ['bot-exarkun-osx'],
+          'builddir': 'full2.4-exarkun-osx',
+          'factory': FullTwistedBuildFactory(source_copy,
+                                             python=["python2.4", "-Wall"],
+                                             # use -Werror soon
+                                             compileOpts=b24compile_opts,
+                                             runTestsRandomly=1),
+          }
+builders.append(bosx24)
+
+bpollosx24 = {'name': 'poll-osx-2.4',
+              'slavenames': ['bot-exarkun-osx-2'],
+              'builddir': 'full2.4-poll-exarkun-osx',
+              'factory': TwistedReactorsBuildFactory(source_copy,
+                                                     python="python2.4",
+                                                     reactors=['poll']),
+              }
+builders.append(bpollosx24)
+
 b25debian = {
     'name': 'full-2.5-debian',
     'slavenames': ['bot-idnar-debian'],
@@ -257,6 +277,14 @@
               }
 builders.append(b24freebsd)
 
+bpypyc = {'name': 'pypy-c',
+          'slavename': 'bot-jerub-pypy',
+          'builddir': 'pypy-c',
+          'factory': TwistedReactorsBuildFactory(source_copy,
+                                                 python="pypy-c",
+                                                 reactors=["default"])}
+builders.append(bpypyc)
+
 # b24threadless = {'name': 'threadless',
 #                  'slavename': 'bot-threadless',
 #                  'builddir': 'debian-threadless-2.4',
@@ -294,10 +322,12 @@
     c['status'].append(html.Waterfall(distrib_port=p))
 else:
     c['status'].append(html.Waterfall(http_port=9988))
-if really:
-    c['status'].append(words.IRC(host="irc.us.freenode.net",
-                                 nick='buildbot',
-                                 channels=["twisted"]))
+# IRC disabled until I figure out why it won't connect successfully
+#  -warner 22-Aug-2006
+#if really:
+#    c['status'].append(words.IRC(host="irc.us.freenode.net",
+#                                 nick='buildbot',
+#                                 channels=["twisted"]))
 
 c['debugPassword'] = private.debugPassword
 #c['interlocks'] = [("do-deb", ["full-2.2"], ["debuild"])]





More information about the Commits mailing list