From 51e63f7229aeb8a70ed2fcbef03e1e656bed2f46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Mon, 29 Aug 2022 10:30:00 -0700 Subject: [PATCH] Explicitly provide kernel-root argument to prepare-rootfs action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's make the "kernel-root" explicit when using the prepare-rootfs action, instead of relying on the default, .kernel. 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 5b63b6b..cae8064 100644 --- a/.github/actions/vmtest/action.yml +++ b/.github/actions/vmtest/action.yml @@ -78,9 +78,10 @@ runs: - name: prepare rootfs uses: libbpf/ci/prepare-rootfs@master with: - kernel: ${{ inputs.kernel }} project-name: 'libbpf' arch: ${{ inputs.arch }} + kernel: ${{ inputs.kernel }} + kernel-root: '.kernel' image-output: '/tmp/root.img' # 5. run selftest in QEMU - name: Run selftests