diff --git a/buildbot/master.cfg b/buildbot/master.cfg index 61b6baa3..12fe8c5d 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -101,7 +101,7 @@ c['schedulers'].append( SingleBranchScheduler( c['schedulers'].append( Nightly( name="sched-dist", branch=phoenixGitBranch, - hour=21, minute=0, + hour=1, minute=15, onlyIfChanged=True, builderNames=["dist-osx-py27-2", "dist-osx-py33", @@ -166,7 +166,7 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'): # Was the build started from the force build form with a "fullclean" # property set? If so, clobber the SVN checkout folders. cmd = ['bash', '-c', - WithProperties('if [ %(fullclean:-no)s == yes ]; then rm -rf ../wxWidgets ../Phoenix; echo fully cleaned; fi'), + WithProperties('if [ %(fullclean:-no)s == yes ]; then rm -rf ../Phoenix; echo fully cleaned; fi'), ] factory.addStep(ShellCommand(command=cmd, description='fullclean?', workdir="")) @@ -191,6 +191,7 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'): progress=True, clobberOnFailure=True, submodules=True, + logEnviron=False, mode=mode, method=method)) if buildType == 'docs':