The buildbot shouldn't stop on a failed svn cleanup, as that will happen if there's no working copy in place, not only on unsuccessful cleanup.
- Legacy-Id: 9721
This commit is contained in:
parent
9ea5e084d2
commit
56ca34090c
|
@ -284,7 +284,7 @@ factory = BuildFactory()
|
||||||
factory.addStep(ShellCommand(
|
factory.addStep(ShellCommand(
|
||||||
descriptionDone="svn cleanup",
|
descriptionDone="svn cleanup",
|
||||||
workdir=Interpolate('build/%(src::branch)s'),
|
workdir=Interpolate('build/%(src::branch)s'),
|
||||||
haltOnFailure=True,
|
haltOnFailure=False,
|
||||||
command=["svn", "cleanup"],
|
command=["svn", "cleanup"],
|
||||||
))
|
))
|
||||||
factory.addStep(SVN(
|
factory.addStep(SVN(
|
||||||
|
|
Loading…
Reference in a new issue