From 2d8476400aae84cde4b393462e16dfe51be93814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Wed, 31 Jul 2024 15:03:53 -0700 Subject: [PATCH] Test --- .github/workflows/build-linux.yml | 5 +++-- .github/workflows/test-kernel.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 0ac766a1b..6507337da 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -5,7 +5,7 @@ on: outputs: kernel-url: description: "URL of the built (and uploaded) Linux kernel" - value: ${{ jobs.build.upload-kernel-image.outputs.artifact-url }} + value: ${{ jobs.build.upload-kernel.outputs.artifact-url }} jobs: build: @@ -54,6 +54,7 @@ jobs: - uses: actions/upload-artifact@v4 id: upload-linux-kernel with: - name: linux-kernel-image + name: linux-kernel if-no-files-found: error + compression-level: 0 path: build/arch/x86/boot/bzImage diff --git a/.github/workflows/test-kernel.yml b/.github/workflows/test-kernel.yml index 3beb16989..0fa23f29a 100644 --- a/.github/workflows/test-kernel.yml +++ b/.github/workflows/test-kernel.yml @@ -35,7 +35,7 @@ jobs: EOF chmod a+x main.sh - name: Test - uses: danobi/vmtest-action@v0.6 + uses: danobi/vmtest-action@master with: kernel_url: ${{ needs.build-linux-kernel.outputs.kernel-url }} command: "/bin/bash -c ${{ github.workspace }}/main.sh"