From ec3d39249cab6c872a3284cd23f98ec6164c001f Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Tue, 21 Jan 2025 16:48:23 +0100 Subject: [PATCH] fix condition for running bootloader common tests There's no 'x86' arch. There is 'X86', but we currently don't any CI job on a 32-bit target, so this still wouldn't work. Let's just use X64. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4e66bbb..f136dc79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: Run api tests run: cargo test -p bootloader_api - name: Run bootloader common tests - if: runner.arch == 'x86' + if: runner.arch == 'X64' run: cargo test -p bootloader-x86_64-common - name: Run integration tests run: cargo test -- --test-threads 1