From c5b038265b525eaec19406f1548d7307d0dd9928 Mon Sep 17 00:00:00 2001 From: Dennis Maisenbacher Date: Tue, 24 Mar 2026 15:26:54 +0100 Subject: [PATCH] CI: use podman as container runtime With the most recent kernel changes docker fails to setup the container networking. Docker relies on the legacy iptables which is not compiled into the kernel by default anymore. Let's take this opportunity to move to podman. Signed-off-by: Dennis Maisenbacher --- .github/workflows/run-nightly-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-nightly-tests.yml b/.github/workflows/run-nightly-tests.yml index 71bef625d3..fe3567c91e 100644 --- a/.github/workflows/run-nightly-tests.yml +++ b/.github/workflows/run-nightly-tests.yml @@ -146,8 +146,8 @@ jobs: #that contains a valid nvme namespace which is capable of the nvm #command set. - sudo docker run --privileged \ - -v "/dev":"/dev":z \ + sudo podman run --privileged \ + --device="${BDEV0}":"${BDEV0}":rwm \ -e BDEV0 \ -v "${PWD}/test.sh":"/test.sh" \ -v "${PWD}/nvme-cli":"/nvme-cli":z \