From 7c6655fd9f0dcc59a67433e2a6e355afeb8b63aa Mon Sep 17 00:00:00 2001 From: boxdot Date: Fri, 12 Jan 2024 18:47:59 +0100 Subject: [PATCH] add missing build step on musl aarch64 platform --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 164c2e3..0c52d95 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -160,11 +160,16 @@ jobs: target: aarch64-unknown-linux-musl override: true - name: Build + uses: actions-rs/cargo@v1 + with: + command: build + args: --target aarch64-unknown-linux-musl + - name: Build and run xtask uses: actions-rs/cargo@v1 # xtask miscompiles on musl platform without explicit target flag with: command: run - args: -p xtask --target x86_64-unknown-linux-musl -- --help + args: -p xtask --target aarch64-unknown-linux-musl -- --help build-x86_64-apple-darwin: name: build (x86_64-apple-darwin)