From 7c0f3f9aeea4c6b91ccccf7883ede9a43dce4d6d Mon Sep 17 00:00:00 2001 From: Alya Sirko Date: Sat, 10 Sep 2022 16:53:51 +0300 Subject: [PATCH] add ci pipeline --- ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.py b/ci.py index 9f5627d6..bf1e42e7 100755 --- a/ci.py +++ b/ci.py @@ -36,7 +36,7 @@ def podman_online(dir, *args): ]) def podman_ci(dir, *args): - subprocess.run(["podman", "run", "-it", "--rm", "--privileged", f"--workdir={dir}", + subprocess.run(["podman", "run", "--rm", "--privileged", f"--workdir={dir}", "-v", os.getcwd() + f":{CONTAINER_HOME}/src:U", CONTAINER_IMAGE, "bash", "-c", ' '.join(args) ])