From warner at users.sourceforge.net Thu Dec 22 21:00:03 2005 From: warner at users.sourceforge.net (Brian Warner) Date: Thu, 22 Dec 2005 21:00:03 +0000 Subject: [Buildbot-commits] buildbot/buildbot scheduler.py,1.11,1.12 Message-ID: Update of /cvsroot/buildbot/buildbot/buildbot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19856/buildbot Modified Files: scheduler.py Log Message: Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-450 Creator: Brian Warner update twisted_master.cfg, add dummy addChange() to BaseScheduler * docs/examples/twisted_master.cfg: merge changes from pyr: add new win32 builders * buildbot/scheduler.py (BaseScheduler.addChange): include a dummy addChange in the parent class, although I suspect this should be fixed better in the future. Index: scheduler.py =================================================================== RCS file: /cvsroot/buildbot/buildbot/buildbot/scheduler.py,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- scheduler.py 27 Nov 2005 03:58:48 -0000 1.11 +++ scheduler.py 22 Dec 2005 21:00:01 -0000 1.12 @@ -33,6 +33,9 @@ def submit(self, bs): self.parent.submitBuildSet(bs) + def addChange(self, change): + pass + class BaseUpstreamScheduler(BaseScheduler): if implements: implements(interfaces.IUpstreamScheduler) From warner at users.sourceforge.net Thu Dec 22 21:00:03 2005 From: warner at users.sourceforge.net (Brian Warner) Date: Thu, 22 Dec 2005 21:00:03 +0000 Subject: [Buildbot-commits] buildbot ChangeLog,1.563,1.564 Message-ID: Update of /cvsroot/buildbot/buildbot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19856 Modified Files: ChangeLog Log Message: Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-450 Creator: Brian Warner update twisted_master.cfg, add dummy addChange() to BaseScheduler * docs/examples/twisted_master.cfg: merge changes from pyr: add new win32 builders * buildbot/scheduler.py (BaseScheduler.addChange): include a dummy addChange in the parent class, although I suspect this should be fixed better in the future. Index: ChangeLog =================================================================== RCS file: /cvsroot/buildbot/buildbot/ChangeLog,v retrieving revision 1.563 retrieving revision 1.564 diff -u -d -r1.563 -r1.564 --- ChangeLog 27 Nov 2005 03:58:48 -0000 1.563 +++ ChangeLog 22 Dec 2005 21:00:01 -0000 1.564 @@ -1,3 +1,12 @@ +2005-12-22 Brian Warner + + * docs/examples/twisted_master.cfg: merge changes from pyr: add + new win32 builders + + * buildbot/scheduler.py (BaseScheduler.addChange): include a dummy + addChange in the parent class, although I suspect this should be + fixed better in the future. + 2005-11-26 Brian Warner * buildbot/scheduler.py (AnyBranchScheduler.addChange): don't From warner at users.sourceforge.net Thu Dec 22 21:00:04 2005 From: warner at users.sourceforge.net (Brian Warner) Date: Thu, 22 Dec 2005 21:00:04 +0000 Subject: [Buildbot-commits] buildbot/docs/examples twisted_master.cfg,1.38,1.39 Message-ID: Update of /cvsroot/buildbot/buildbot/docs/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19856/docs/examples Modified Files: twisted_master.cfg Log Message: Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-450 Creator: Brian Warner update twisted_master.cfg, add dummy addChange() to BaseScheduler * docs/examples/twisted_master.cfg: merge changes from pyr: add new win32 builders * buildbot/scheduler.py (BaseScheduler.addChange): include a dummy addChange in the parent class, although I suspect this should be fixed better in the future. Index: twisted_master.cfg =================================================================== RCS file: /cvsroot/buildbot/buildbot/docs/examples/twisted_master.cfg,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- twisted_master.cfg 5 Nov 2005 21:17:20 -0000 1.38 +++ twisted_master.cfg 22 Dec 2005 21:00:01 -0000 1.39 @@ -158,18 +158,41 @@ } builders.append(b23osx) -b22w32 = {'name': "win32", - 'slavename': "bot-w32", - 'builddir': "W32-full2.2", +b24w32_select = { + 'name': "win32-select", + 'slavename': "bot-win32-select", + 'builddir': "W32-full2.4-select", 'factory': TwistedReactorsBuildFactory(source_copy, python="python", compileOpts2=["-c","mingw32"], - reactors=["default", - "iocp", - "win32", - ]), + reactors=["default"]), } -builders.append(b22w32) +builders.append(b24w32_select) + + +b24w32_win32er = { + 'name': "win32-win32er", + 'slavename': "bot-win32-win32er", + 'builddir': "W32-full2.4-win32er", + 'factory': TwistedReactorsBuildFactory(source_copy, + python="python", + compileOpts2=["-c","mingw32"], + reactors=["win32"]), + } +builders.append(b24w32_win32er) + + +b24w32_iocp = { + 'name': "win32-iocp", + 'slavename': "bot-win32-iocp", + 'builddir': "W32-full2.4-iocp", + 'factory': TwistedReactorsBuildFactory(source_copy, + python="python", + compileOpts2=["-c","mingw32"], + reactors=["iocp"]), + } +builders.append(b24w32_iocp) + b23bsd = {'name': "freebsd", 'slavename': "bot-suszko", From warner at users.sourceforge.net Sun Dec 25 22:35:28 2005 From: warner at users.sourceforge.net (Brian Warner) Date: Sun, 25 Dec 2005 22:35:28 +0000 Subject: [Buildbot-commits] site index.html,1.51,1.52 Message-ID: Update of /cvsroot/buildbot/site In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32072 Modified Files: index.html Log Message: add Zope3 buildbot Index: index.html =================================================================== RCS file: /cvsroot/buildbot/site/index.html,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- index.html 27 Nov 2005 02:26:01 -0000 1.51 +++ index.html 25 Dec 2005 22:35:24 -0000 1.52 @@ -156,6 +156,11 @@ to test their ECM project named CPS. +
  • The Zope project (a large and well-known + application server for building web Content Management Systems and the + like) is using a buildbot to track + the status of Zope3.
  • +
  • install a Buildbot today and get your name added here!
  • @@ -178,5 +183,5 @@ align="right" /> -Last modified: Sat Nov 26 18:25:14 PST 2005 +Last modified: Sun Dec 25 14:33:55 PST 2005 From warner at users.sourceforge.net Sun Dec 25 22:37:46 2005 From: warner at users.sourceforge.net (Brian Warner) Date: Sun, 25 Dec 2005 22:37:46 +0000 Subject: [Buildbot-commits] site source-Arch.html,1.6,1.7 Message-ID: Update of /cvsroot/buildbot/site In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32394 Modified Files: source-Arch.html Log Message: recommend baz instead of tla Index: source-Arch.html =================================================================== RCS file: /cvsroot/buildbot/site/source-Arch.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- source-Arch.html 20 Jul 2005 07:22:20 -0000 1.6 +++ source-Arch.html 25 Dec 2005 22:37:43 -0000 1.7 @@ -34,12 +34,13 @@ version per release. For example, the 0.6.5 release is tagged onto the buildbot--release--0.6.5 branch.)

    -

    Therefore, the following commands will get you an up-to-date Buildbot -tree:

    +

    Therefore, the following commands will get you an up-to-date Buildbot tree +(using the Bazaar client, but it is possible that the 'tla' client will work +too):

    -tla register-archive http://buildbot.sourceforge.net/Arch/2004/
    -tla get arch at buildbot.sf.net--2004/buildbot--dev--0
    +baz register-archive http://buildbot.sourceforge.net/Arch/2004/
    +baz get arch at buildbot.sf.net--2004/buildbot--dev--0
     

    All changes are signed with one of two dedicated GPG keys: @@ -153,5 +154,5 @@ Brian Warner <warner @ lothar.com> -Last modified: Wed Jul 20 00:20:59 PDT 2005 +Last modified: Tue Sep 27 16:52:35 PDT 2005