taler-deployment

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

commit b515fe734f4ff13a9a557f450dcd17c9d697cdf0
parent 3a1845aadd9736f5e0351c17df85d982b079264e
Author: Devan Carpenter <devan@taler.net>
Date:   Mon, 12 Jun 2023 15:48:47 -0400

buildbot: log the container build step

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -170,7 +170,8 @@ def container_run_step(factory, WORK_DIR, containerName, name="container build and run", commands=[ util.ShellArg(command=["podman", "build", "-t", containerName, - "-f", containerFile, "."]), + "-f", containerFile, "."], + logname='build container', haltOnFailure=True), util.ShellArg(command=["podman", "run", "-ti", "--rm", "--volume", "$PWD:/workdir", "--workdir", "/workdir", containerName, jobCmd]),