Skip to content

Commit

Permalink
fix condition for running bootloader common tests
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Freax13 committed Jan 21, 2025
1 parent 37582ac commit ec3d392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec3d392

Please sign in to comment.