Skip to content

Commit

Permalink
add missing build step on musl aarch64 platform
Browse files Browse the repository at this point in the history
  • Loading branch information
boxdot committed Jan 12, 2024
1 parent c01575f commit 7c6655f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7c6655f

Please sign in to comment.