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

Commit

Permalink
save current config
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Aug 21, 2012
1 parent f8ba442 commit bb08b4e
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions master.cfg
Expand Up @@ -391,8 +391,10 @@ ZTK_DEV_PLATFORMS = PLATFORMS.copy()

del ZTK_DEV_PLATFORMS['py_244_win32']
del ZTK_DEV_PLATFORMS['py_254_win32']
#del ZTK_DEV_PLATFORMS['py_270_win32']
#del ZTK_DEV_PLATFORMS['py_270_win64']
del ZTK_DEV_PLATFORMS['py_265_win32']
del ZTK_DEV_PLATFORMS['py_265_win64']
del ZTK_DEV_PLATFORMS['py_270_win32']
del ZTK_DEV_PLATFORMS['py_270_win64']

def ztk_dev_builder(name, slavename, platform, locks):
builddir = name.replace(' ', '_')
Expand Down Expand Up @@ -806,8 +808,10 @@ def setup_BB_dev_tests(slow_lock, hour=02, minute=30):
# ZODB

ZODB_DEV_PLATFORMS = PLATFORMS.copy()
del ZODB_DEV_PLATFORMS['py_244_win32']
del ZODB_DEV_PLATFORMS['py_254_win32']
if 'py_244_win32' in ZODB_DEV_PLATFORMS:
del ZODB_DEV_PLATFORMS['py_244_win32']
if 'py_254_win32' in ZODB_DEV_PLATFORMS:
del ZODB_DEV_PLATFORMS['py_254_win32']

def ZODB_dev_builder(name, slavename, platform, locks):
builddir = name.replace(' ', '_')
Expand Down Expand Up @@ -1056,7 +1060,7 @@ def bsquare_configure(c,
for project in projects:
if not project or project.startswith('#'):
continue #comment or empty line

if isinstance(makefactory, dict):
f = makefactory.get(project,
makefactory.get('__default__', makefactory))
Expand Down Expand Up @@ -1139,3 +1143,7 @@ c['projectName'] = "Zope wineggbuilder and windows buildbot"
c['projectURL'] = "http://www.zope.org/"
c['buildbotURL'] = "http://winbot.zope.org/"
c['slavePortnum'] = "tcp:8989:interface=127.0.0.1"
c['changeHorizon'] = 100
c['buildHorizon'] = 100
c['eventHorizon'] = 100
c['logHorizon'] = 100

0 comments on commit bb08b4e

Please sign in to comment.