From 57b0ed89b3641e883a6fd481a7eb98b8cff5f814 Mon Sep 17 00:00:00 2001 From: Simon Li Date: Sun, 27 Nov 2022 23:48:17 +0000 Subject: [PATCH] Try ignoring `/sys/fs/cgroup` mount --- .github/integration-test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/integration-test.py b/.github/integration-test.py index c67e273..a756711 100755 --- a/.github/integration-test.py +++ b/.github/integration-test.py @@ -82,8 +82,8 @@ def run_systemd_image(image_name, container_name, bootstrap_pip_spec): # If this is changed all docs references to the required memory must be changed too. "--memory=900m", ] - if container_runtime() != "podman": - cmd.append("--mount=type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup") + # if container_runtime() != "podman": + # cmd.append("--mount=type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup") if bootstrap_pip_spec: cmd.append("-e")