commit 384235378553d21a05170a282df6abc0f3bdcbac
parent 2d66800520c190fccb5afd2a1f91fc456a4fd0c5
Author: Devan Carpenter <devan@taler.net>
Date: Wed, 12 Feb 2025 13:43:52 +0100
buildbot: improve debug messages
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -235,12 +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}")
+ print(f"Checking that {inputs_path} exists")
if os.path.isdir(inputs_path):
- print(f"adding {inputs_path}")
+ print(f"Adding {inputs_path}")
runCommand += ["--volume", f"{inputs_path}:/inputs:ro"]
else:
- print(f"inputs directory not found at {inputs_path}")
+ 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",