taler-deployment

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

commit e5e0bff90df171cc2adc7956ceb245d4947e55bb
parent 660fffc5858e17281e22e7e43db927ebd1f7ef88
Author: Devan Carpenter <devan@taler.net>
Date:   Wed,  6 Sep 2023 13:59:45 -0400

buildbot: set workspace file permissions

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"test -d {CONTAINER_WORKDIR} && podman run --rm --volume {CONTAINER_WORKDIR}:/workdir docker.io/library/debian:bookworm-slim chmod -R 777 /workdir || mkdir -p {CONTAINER_WORKDIR}", haltOnFailure=True, ))