From 69938da6d7748a7b445954a959288b15bf9d8c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Wed, 17 Aug 2022 15:21:16 -0700 Subject: [PATCH] Explicitly specify Qemu image path to use MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The path to the file system image used by our invocation of Qemu is currently hard coded to /tmp/root.img somewhere in a different repository. With https://github.com/libbpf/ci/commit/da44c0b6ee29ec53776c1303f7ac790b7e337db5 landed we have the option of specifying it explicitly from here. Let's do just that, so that we can remove the default value from libbpf/ci altogether. Signed-off-by: Daniel Müller --- .github/actions/vmtest/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/vmtest/action.yml b/.github/actions/vmtest/action.yml index 01ae223..e5f0722 100644 --- a/.github/actions/vmtest/action.yml +++ b/.github/actions/vmtest/action.yml @@ -79,6 +79,7 @@ runs: kernel: ${{ inputs.kernel }} project-name: 'libbpf' arch: ${{ inputs.arch }} + image-output: '/tmp/root.img' # 5. run selftest in QEMU - name: Run selftests uses: libbpf/ci/run-qemu@master