More buildbot tweaks.

Fix the fullclean command and turn off environment logging for the Git step.
This commit is contained in:
Robin Dunn
2015-02-03 11:51:32 -08:00
parent 57741846ed
commit fa6f31fc17

View File

@@ -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':