[Checkins] SVN: Sandbox/adamg/zope.wineggbuilder/trunk/master.cfg update from the server

Adam Groszer agroszer at gmail.com
Thu Aug 12 03:32:20 EDT 2010


Log message for revision 115647:
  update from the server

Changed:
  U   Sandbox/adamg/zope.wineggbuilder/trunk/master.cfg

-=-
Modified: Sandbox/adamg/zope.wineggbuilder/trunk/master.cfg
===================================================================
--- Sandbox/adamg/zope.wineggbuilder/trunk/master.cfg	2010-08-12 06:48:33 UTC (rev 115646)
+++ Sandbox/adamg/zope.wineggbuilder/trunk/master.cfg	2010-08-12 07:32:20 UTC (rev 115647)
@@ -18,7 +18,7 @@
 
 from buildbot.process.base import Build
 from buildbot.status import html
-from buildbot.scheduler import Scheduler, Nightly, Triggerable
+from buildbot.scheduler import Scheduler, Nightly, Triggerable, Periodic
 from buildbot.steps.trigger import Trigger
 
 # This is a sample buildmaster config file. It must be installed as
@@ -277,8 +277,12 @@
         'locks': [slow_lock],
     })
 
-    c['schedulers'].append(Nightly(
-                "Nightly egg build", ['wineggbuilder'], hour=01, minute=10,
+    #c['schedulers'].append(Nightly(
+    #            "Nightly egg build", ['wineggbuilder'], hour=01, minute=10,
+    #            branch="trunk"))
+
+    c['schedulers'].append(Periodic(
+                "Periodic egg build", ['wineggbuilder'], periodicBuildTimer=1800,
                 branch="trunk"))
 
 # egg building
@@ -364,6 +368,9 @@
 
 ZTK_DEV_PLATFORMS = DEV_PLATFORMS.copy()
 
+del ZTK_DEV_PLATFORMS['py_270_win32']
+del ZTK_DEV_PLATFORMS['py_270_win64']
+
 ######################################
 # ZTK tests
 
@@ -450,6 +457,10 @@
 ######################################
 # ZTK 1.0 tests
 
+ZTK_10_PLATFORMS = PLATFORMS.copy()
+del ZTK_10_PLATFORMS['py_270_win32']
+del ZTK_10_PLATFORMS['py_270_win64']
+
 def ztk_10_builder(name, slavename, platform, locks):
     builddir = name.replace(' ', '_')
     f = factory.BuildFactory()
@@ -500,8 +511,8 @@
     hour = 02
     minute = 10
     builders = []
-    for pname in sorted(ZTK_DEV_PLATFORMS.keys()):
-        platform = ZTK_DEV_PLATFORMS[pname]
+    for pname in sorted(ZTK_10_PLATFORMS.keys()):
+        platform = ZTK_10_PLATFORMS[pname]
         name = "ztk_10 %s" % platform.name
         builders.append(name)
         c['builders'].append(
@@ -544,16 +555,16 @@
     #          name="virtualenv",
     #          description="virtualenv"))
     f.addStep(shell.ShellCommand(
-              command=[platform.python, r"bootstrap\newbootstrap.py"],
+              command=[platform.python, r"dev.py"],
               haltOnFailure=True,
               name="bootstrap",
               description="bootstrap"))
-    f.addStep(shell.ShellCommand(
-              command="cmd /c %s" % platform.buildout,
-              haltOnFailure=True,
-              name="buildout",
-              description="buildout",
-              timeout=3600))
+    #f.addStep(shell.ShellCommand(
+    #          command="%s" % platform.buildout,
+    #          haltOnFailure=True,
+    #          name="buildout",
+    #          description="buildout",
+    #          timeout=3600))
     f.addStep(Test(
               command=[r"bin\test.exe", "--exit-with-status", "-1"],
               haltOnFailure=False,



More information about the checkins mailing list