taler-deployment

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

commit 8c579b54995f6465b1c3d6c1432dc5f5b9c621aa
parent a6cc0d2a25bbade1ab780b13792c5e0dd91a1323
Author: Devan Carpenter <devan@taler.net>
Date:   Wed, 12 Feb 2025 13:28:11 +0100

buildbot: debug inputs path more thoroughly

Diffstat:
Mbuildbot/master.cfg | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -235,9 +235,12 @@ def container_add_step(HALT_ON_FAILURE, # Inputs directory inputs_path = f"/home/container-worker/container_inputs/{repoName}" + print(f"adding {inputs_path}") if os.path.isdir(inputs_path): print(f"adding {inputs_path}") runCommand += ["--volume", f"{inputs_path}:/inputs:ro"] + else: + print(f"inputs directory not found at {inputs_path}") if CONTAINER_BUILD: runCommand += ["--volume", f"/run/user/{pwd.getpwnam('container-worker').pw_uid}/podman/podman.sock:/run/podman/podman.sock",