taler-deployment

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

commit 3a1845aadd9736f5e0351c17df85d982b079264e
parent 1f7d46151dc81a6da2446b6a32c4fadbc9f83a74
Author: Devan Carpenter <devan@taler.net>
Date:   Mon, 12 Jun 2023 15:31:00 -0400

buildbot: add default Containerfile path to podman

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -164,12 +164,13 @@ def update_deployment(factory): # Convenience function that builds and runs a container. def container_run_step(factory, WORK_DIR, containerName, + containerFile="ci/Containerfile", jobCmd="/workdir/ci/ci.sh"): factory.addStep(steps.ShellSequence( name="container build and run", commands=[ util.ShellArg(command=["podman", "build", "-t", containerName, - "."]), + "-f", containerFile, "."]), util.ShellArg(command=["podman", "run", "-ti", "--rm", "--volume", "$PWD:/workdir", "--workdir", "/workdir", containerName, jobCmd]),