[Buildbot-commits] buildbot/docs/examples twisted_master.cfg,1.28,1.29
Brian Warner
warner at users.sourceforge.net
Sat Sep 3 19:50:04 UTC 2005
Update of /cvsroot/buildbot/buildbot/docs/examples
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2495/docs/examples
Modified Files:
twisted_master.cfg
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-314
Creator: Brian Warner <warner at lothar.com>
the twisted buildbot is no longer exercising python2.2 tests
* docs/examples/twisted_master.cfg: (sync with reality) turn off
python2.2 tests, change 'Quick' builder to only use python2.3
Index: twisted_master.cfg
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/examples/twisted_master.cfg,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- twisted_master.cfg 17 Jul 2005 23:28:33 -0000 1.28
+++ twisted_master.cfg 3 Sep 2005 19:50:00 -0000 1.29
@@ -80,19 +80,10 @@
'slavename': "bot1",
'builddir': "quick",
'factory': QuickTwistedBuildFactory(svnurl,
- python=["python2.2", "python2.3"]),
+ python=["python2.3"]),
}
builders.append(b1)
-b22 = {'name': "full-2.2",
- 'slavename': "bot-exarkun",
- 'builddir': "full2.2",
- 'factory': FullTwistedBuildFactory(svnurl,
- python="python2.2",
- processDocs=0),
- }
-builders.append(b22)
-
b23compile_opts = [
"-Wignore::PendingDeprecationWarning:distutils.command.build_py",
"-Wignore::PendingDeprecationWarning:distutils.command.build_ext",
@@ -155,9 +146,9 @@
}
builders.append(b23osx)
-b22w32 = {'name': "win32",
+b23w32 = {'name': "win32",
'slavename': "bot-w32",
- 'builddir': "W32-full2.2",
+ 'builddir': "W32-full2.3",
'factory': TwistedReactorsBuildFactory(svnurl,
python="python",
compileOpts2=["-c","mingw32"],
@@ -166,11 +157,11 @@
"win32",
]),
}
-builders.append(b22w32)
+builders.append(b23w32)
b23bsd = {'name': "freebsd",
'slavename': "bot-suszko",
- 'builddir': "bsd-full2.2",
+ 'builddir': "bsd-full2.3",
'factory': TwistedReactorsBuildFactory(svnurl,
python="python2.3",
reactors=["default",
@@ -205,7 +196,7 @@
channels=["twisted"]))
c['debugPassword'] = private.debugPassword
-#c['interlocks'] = [("do-deb", ["full-2.2"], ["debuild"])]
+#c['interlocks'] = [("do-deb", ["full-2.3"], ["debuild"])]
if hasattr(private, "manhole"):
c['manhole'] = master.Manhole(*private.manhole)
c['status'].append(client.PBListener(9936))
More information about the Commits
mailing list