Added linux aarch64

This commit is contained in:
Igor Katson 2022-05-23 21:33:12 +01:00
parent e10da1c7dd
commit 9c79e3a99e
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
2 changed files with 51 additions and 16 deletions

View file

@ -34,9 +34,15 @@ jobs:
- name: Build release linux x86_64 binary
run:
rustup target install x86_64-unknown-linux-gnu &&
make release-linux &&
make release-linux-x86_64 &&
mv target/x86_64-unknown-linux-gnu/release/rqbit target/release/rqbit-linux-static-x86_64
- name: Build release linux aarch64 binary
run:
rustup target install aarch64-unknown-linux-gnu &&
make release-linux-aarch64 &&
mv target/aarch64-unknown-linux-gnu/release/rqbit target/release/rqbit-linux-static-aarch64
- name: Build release OSX universal binary
run:
rustup target install aarch64-apple-darwin &&