taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit a0ba72543abd477d0ca6f4ebb309ada3ec96c406
parent 6abeb59deb42cb3698ffc1ef67247288df544d64
Author: Devan Carpenter <devan@taler.net>
Date:   Wed,  6 Sep 2023 13:34:52 -0400

buildbot: ensure a clean workspace

Diffstat:
Mbuildbot/master.cfg | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -1356,7 +1356,7 @@ for repo in container_repos: container_factory.addStep(ShellCommand( name="workspace", descriptionDone="Workspace directory check", - command=f"test -d {CONTAINER_WORKDIR} || mkdir -p {CONTAINER_WORKDIR}", + command=f"mv -f ${CONTAINER_WORKDIR} /tmp/trash/ ; mkdir -p {CONTAINER_WORKDIR}", haltOnFailure=True, ))