From d8f84ef76c1805106b35fc7b89c1754b81812643 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 1 Dec 2023 08:51:34 -0500 Subject: [PATCH] CI: Disable running aarch64 tests in CI for now These tests almost always fail, and all we do is try to boot. Disable it for now until it can pass more reliably. Note we still compile aarch64, so the build shouldn't break unnoticed. --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 28d5b7be90..ed36beaa84 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -237,7 +237,7 @@ jobs: run: ninja install && ninja qemu-image - name: Run On-Target Tests - if: ${{ matrix.debug-options == 'NORMAL_DEBUG' }} + if: ${{ matrix.debug-options == 'NORMAL_DEBUG' && matrix.arch != 'aarch64' }} working-directory: ${{ github.workspace }}/Build/${{ matrix.arch }} env: SERENITY_QEMU_CPU: "max,vmx=off"