Skip to content

Commit

Permalink
fix: fix Linux ARM64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
hans00 committed May 7, 2024
1 parent 4363494 commit bdbce59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ jobs:
- name: Prepare & build (Linux arm64)
if: runner.os == 'Linux'
run: |
docker run --rm --volume $(pwd):/app --workdir /app -t arm64v8/ubuntu /bin/bash -c "./scripts/prepare-linux.sh && ./scripts/build-linux.sh"
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker run --rm --volume $(pwd):/app --workdir /app -t arm64v8/ubuntu bash -c "./scripts/prepare-linux.sh && ./scripts/build-linux.sh"
- name: Build (macOS)
if: runner.os == 'macOS'
run: bash ./scripts/build-macos.sh
Expand Down

0 comments on commit bdbce59

Please sign in to comment.