commit 3c6698f56feeece6bfbe4140b9d4b4f677aa0411
parent 878bf9502613b69ceeb83dbdf19faae6819c640d
Author: Devan Carpenter <devan@taler.net>
Date: Mon, 10 Jul 2023 14:56:56 -0400
buildbot: do not assign pseudo-tty to podman cmd
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -194,7 +194,7 @@ def container_add_step(HALT_ON_FAILURE,
return steps.ShellSequence(
name=stepName,
commands=[
- util.ShellArg(command=["podman", "run", "-ti", "--rm",
+ util.ShellArg(command=["podman", "run", "--rm",
"--volume", f"{WORK_DIR}:/workdir",
"--workdir", "/workdir",
CONTAINER_NAME, jobCmd],
@@ -211,7 +211,7 @@ def container_add_step(HALT_ON_FAILURE,
util.ShellArg(command=["podman", "build", "-t", CONTAINER_NAME,
"-f", containerFile, "."],
logname='build container', haltOnFailure=True),
- util.ShellArg(command=["podman", "run", "-ti", "--rm",
+ util.ShellArg(command=["podman", "run", "--rm",
"--volume", f"{WORK_DIR}:/workdir",
"--workdir", "/workdir",
CONTAINER_NAME, jobCmd],