Replace cross-rs with cargo-zigbuild for cross-compilation
Build / build (ccsm-darwin-amd64.tar.gz, ccsm, x86_64-apple-darwin) (push) Failing after 4m34s
Build / build (ccsm-linux-amd64.tar.gz, ccsm, x86_64-unknown-linux-gnu) (push) Failing after 2m27s
Build / build (ccsm-windows-amd64.zip, ccsm.exe, x86_64-pc-windows-gnu) (push) Has been cancelled

cross-rs has no Docker image for macOS targets and the Windows image
has a broken cargo PATH, causing all non-Linux builds to fail.
Zig's toolchain handles Linux→macOS and Linux→Windows cross-compilation
from a single ubuntu runner. Also add --target to the native Linux build
so the output path matches the Package step.
This commit is contained in:
2026-06-22 09:56:30 +08:00
parent 74cbccc5a8
commit 12aea0fc26
+16 -5
View File
@@ -32,17 +32,28 @@ jobs:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
- name: Install Rust targets
run: |
rustup target add ${{ matrix.target }}
- name: Build (Linux)
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: cargo build --release
run: cargo build --release --target ${{ matrix.target }}
- name: Install cross
- name: Install Zig
if: matrix.target != 'x86_64-unknown-linux-gnu'
run: cargo install cross --locked
run: |
curl -L -o zig.tar.xz https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
tar xf zig.tar.xz
echo "$PWD/zig-linux-x86_64-0.13.0" >> "$GITHUB_PATH"
- name: Build with cross
- name: Install cargo-zigbuild
if: matrix.target != 'x86_64-unknown-linux-gnu'
run: cross build --release --target ${{ matrix.target }}
run: cargo install cargo-zigbuild
- name: Build with zigbuild
if: matrix.target != 'x86_64-unknown-linux-gnu'
run: cargo zigbuild --release --target ${{ matrix.target }}
- name: Package
run: |