From 5ff754c574c7bda77fcf1ad9247e60e6b4753c41 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Sun, 8 Jun 2025 20:02:07 -0400 Subject: [PATCH] fix: simplify CI workflow to resolve linker issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ee1695..2cb07c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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