From 0091a86e0bc5b1da69b388da6307ae04103c8630 Mon Sep 17 00:00:00 2001 From: Dennis Maisenbacher Date: Tue, 21 Apr 2026 13:02:27 +0200 Subject: [PATCH] CI: fix podman device permissions The nvme_create_max_ns_test test case is failing to create more than one namespace due to the lack of access permissions in the /dev tree within the test container. Instead of passing only the default namespace of the testing device to the container we now bind mount the entire /dev tree, giving the container access to all devices within the test VM. Signed-off-by: Dennis Maisenbacher --- .github/workflows/run-nightly-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-nightly-tests.yml b/.github/workflows/run-nightly-tests.yml index 20081f8f54..e2e8cb1c76 100644 --- a/.github/workflows/run-nightly-tests.yml +++ b/.github/workflows/run-nightly-tests.yml @@ -126,7 +126,7 @@ jobs: #command set. sudo podman run --privileged \ - --device="${BDEV0}":"${BDEV0}":rwm \ + -v /dev:/dev \ -e BDEV0 \ -v "${PWD}/test.sh":"/test.sh" \ -v "${PWD}/nvme-cli":"/nvme-cli":z \