mirror of
https://github.com/imjasonh/krust
synced 2026-07-08 06:45:32 +00:00
fix: restrict cross-compilation test to x86_64 runners only
- Only run make run-built-image on ubuntu-latest (x86_64) runners - ARM64 runners cannot cross-compile for x86_64 due to linker architecture mismatch - Prevents 'file in wrong format' errors when ARM64 musl-gcc tries to link x86_64 objects 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
c678342a5b
commit
05a1a1915f
1 changed files with 4 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -58,7 +58,10 @@ jobs:
|
|||
- run: make build
|
||||
- run: make test
|
||||
- run: make test-e2e
|
||||
- run: make run-built-image
|
||||
# Only run cross-compilation integration test on x86_64 runners
|
||||
- name: Run integration test (cross-compilation)
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: make run-built-image
|
||||
|
||||
fmt:
|
||||
name: Rustfmt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue