1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 06:45:32 +00:00

fix: simplify CI workflow to resolve linker issues

Remove complex cross-compilation setup that was causing linker
errors. The simplified approach should work with the available
system linkers and musl-tools package.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jason Hall 2025-06-08 20:02:07 -04:00
parent dc09631004
commit 5ff754c574
Failed to extract signature

View file

@ -96,11 +96,6 @@ jobs:
integration:
name: Integration Test
runs-on: ubuntu-latest
services:
registry:
image: registry:2
ports:
- 5000:5000
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Rust
@ -111,7 +106,7 @@ jobs:
- name: Install cross-compilation tools for both architectures
run: |
sudo apt-get update
sudo apt-get install -y musl-tools gcc-aarch64-linux-gnu gcc-x86-64-linux-gnu
sudo apt-get install -y musl-tools gcc-aarch64-linux-gnu
- run: make push-ttl
- run: make run-built-image