Skip to content

Commit ec3d392

Browse files
committed
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.
1 parent 37582ac commit ec3d392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Run api tests
7373
run: cargo test -p bootloader_api
7474
- name: Run bootloader common tests
75-
if: runner.arch == 'x86'
75+
if: runner.arch == 'X64'
7676
run: cargo test -p bootloader-x86_64-common
7777
- name: Run integration tests
7878
run: cargo test -- --test-threads 1

0 commit comments

Comments
 (0)