Skip to content

Commit

Permalink
fix: install cross compatible abi for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 15, 2024
1 parent 160b91e commit d92bed1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-linux-gnueabihf
- name: Run tests
run: cargo test --verbose
- name: Build
run: |
cargo build --verbose --release --target=x86_64-unknown-linux-gnu
# cargo build --verbose --release --target=aarch64-unknown-linux-gnu
cargo build --verbose --release --target=aarch64-unknown-linux-gnu

0 comments on commit d92bed1

Please sign in to comment.