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

Commit

Permalink
disable zc_buildout_dev py_244_win32
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Oct 21, 2010
1 parent 9082c6e commit 09ac8d6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions master.cfg
Expand Up @@ -616,12 +616,15 @@ def zc_buildout_dev_builder(name, slavename, platform, locks):
factory=f,
locks=locks)

ZC_BUILDOUT_PLATFORMS = CLEAN_PLATFORMS.copy()
del ZC_BUILDOUT_PLATFORMS['py_244_win32']

def setup_zc_buildout_dev_tests(slow_lock, hour=02, minute=20):
#hour = 02
#minute = 20
builders = []
for pname in sorted(CLEAN_PLATFORMS.keys()):
platform = CLEAN_PLATFORMS[pname]
for pname in sorted(ZC_BUILDOUT_PLATFORMS.keys()):
platform = ZC_BUILDOUT_PLATFORMS[pname]
name = "zc_buildout_dev %s" % platform.name
builders.append(name)
c['builders'].append(
Expand Down Expand Up @@ -878,10 +881,10 @@ setup_BB_dev_tests(slow_lock, hour=20, minute=50)


#NO proxy via apache, so it can be kicked locally at least
c['status'].append(html.WebStatus(http_port=8009, allowForce=True, logRotateLength=0))
c['status'].append(html.WebStatus(http_port=8009, allowForce=True, logRotateLength=100000000))

#proxy THIS via apache
c['status'].append(html.WebStatus(http_port=8010, allowForce=False, logRotateLength=0))
c['status'].append(html.WebStatus(http_port=8010, allowForce=False, logRotateLength=100000000))


c['projectName'] = "Zope wineggbuilder and windows buildbot"
Expand Down

0 comments on commit 09ac8d6

Please sign in to comment.