Skip to content

Commit

Permalink
Add arm64 dependencies installation step
Browse files Browse the repository at this point in the history
  • Loading branch information
Zel9278 committed Jan 21, 2024
1 parent bcb0275 commit 235bbd7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,13 @@ jobs:
shell: bash -xe {0}
steps:
- name: Install dependencies
if: matrix.target == 'x86_64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-gnu'
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: |
sudo apt-get install -y libasound2-dev libudev-dev --no-install-recommends
- name: Install arm64 dependencies
if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'aarch64-unknown-linux-musl'
run: |
sudo apt-get install -y libasound2-dev:arm64 libudev-dev:arm64 --no-install-recommends
- name: Install musl tools
if: matrix.target == 'x86_64-unknown-linux-musl' || matrix.target == 'aarch64-unknown-linux-musl'
run: |
Expand Down

0 comments on commit 235bbd7

Please sign in to comment.