From 0aeb8dc3fce38714eeedb3d32907a41af46d21a2 Mon Sep 17 00:00:00 2001 From: Phil Elwell Date: Wed, 5 Feb 2025 12:15:38 +0000 Subject: [PATCH] kunit: Use ubuntu-22.04 for arm64 There's a bug in the version of qemu used by Ubuntu 24.04 that kills the arm64 KUnit test. Revert to Ubuntu 22.04 just for that test, until ubuntu-latest updates to qemu 9.2.0+. Link: https://bugzilla.suse.com/show_bug.cgi?id=1236310 Signed-off-by: Phil Elwell --- .github/workflows/kunit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kunit.yml b/.github/workflows/kunit.yml index 5713297d757141..1244d728974069 100644 --- a/.github/workflows/kunit.yml +++ b/.github/workflows/kunit.yml @@ -40,7 +40,7 @@ jobs: vc4-arm64: name: VC4 Unit Tests on ARM64 - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4