Skip to content

Commit

Permalink
build: attempt to fix ci on aarch64 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mahor1221 committed Jul 9, 2024
1 parent c31c517 commit 6e7bbc1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,15 @@ jobs:
with:
targets: ${{ matrix.target }}

- name: Install prerequisites
shell: bash
run: |
case ${{ matrix.target }} in
aarch64-unknown-linux-*)
sudo apt-get -y update
sudo apt-get -y install gcc-aarch64-linux-gnu;;
esac
- name: Check build
if: success() || failure()
id: cargo-check
Expand Down

0 comments on commit 6e7bbc1

Please sign in to comment.