From 16276041f103f3e514482c432ebb4cde000568e5 Mon Sep 17 00:00:00 2001 From: Dennis Maisenbacher Date: Tue, 11 Feb 2025 12:09:01 +0100 Subject: [PATCH] CI: add missing bind-mount option for /dev The failing run-nightly-tests GitHub action is caused by a missing bind-mount option of the /dev directory. Without the 'shared' bind-propagation the device tree is not reliably updated within the container. This causes newly created namespaces not to show up. 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 58fc2a77..e8ac232a 100644 --- a/.github/workflows/run-nightly-tests.yml +++ b/.github/workflows/run-nightly-tests.yml @@ -16,7 +16,7 @@ jobs: #BDEV0 is an environment variable of the self-hosted runner instance #that contains a valid nvme ctrl name which is capable of the nvm #command set. - options: '--privileged -e BDEV0' + options: '--privileged -v "/dev":"/dev":z -e BDEV0' steps: - name: Output kernel version run: | -- 2.50.1