Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
update from the server
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Aug 12, 2010
1 parent 158e17f commit 31ab027
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ from buildbot.process import factory

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
Expand Down Expand Up @@ -277,8 +277,12 @@ def setupEggBuild(slow_lock):
'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
Expand Down Expand Up @@ -364,6 +368,9 @@ DEV_PLATFORMS = dict(

ZTK_DEV_PLATFORMS = DEV_PLATFORMS.copy()

del ZTK_DEV_PLATFORMS['py_270_win32']
del ZTK_DEV_PLATFORMS['py_270_win64']

######################################
# ZTK tests

Expand Down Expand Up @@ -450,6 +457,10 @@ def setupZTK_dev_tests(slow_lock):
######################################
# 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()
Expand Down Expand Up @@ -500,8 +511,8 @@ def setupZTK_10_tests(slow_lock):
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(
Expand Down Expand Up @@ -544,16 +555,16 @@ def zc_buildout_dev_builder(name, slavename, platform, locks):
# 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,
Expand Down

0 comments on commit 31ab027

Please sign in to comment.