From 9aedff8d03ed06e37533d0fc138e52b8f3def83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Mon, 29 Aug 2022 10:50:22 -0700 Subject: [PATCH] Provide kernel-root argument to run-qemu action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With https://github.com/libbpf/ci/pull/36 merged the run-qemu action now accepts an additional argument, `kernel-root`. Provide it to the action with the value appropriate for this repository. Signed-off-by: Daniel Müller --- .github/actions/vmtest/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/vmtest/action.yml b/.github/actions/vmtest/action.yml index cae8064..e85c7d0 100644 --- a/.github/actions/vmtest/action.yml +++ b/.github/actions/vmtest/action.yml @@ -87,6 +87,7 @@ runs: - name: Run selftests uses: libbpf/ci/run-qemu@master with: + arch: ${{ inputs.arch }} img: '/tmp/root.img' vmlinuz: 'vmlinuz' - arch: ${{ inputs.arch }} + kernel-root: '.kernel'