Skip to content

Commit

Permalink
fix if statements for installing apt dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JorritSalverda committed Apr 12, 2024
1 parent 8e21b19 commit 126fd65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
- run: |
sudo apt-get install --assume-yes --no-install-recommends \
libudev-dev
if: matrix.platform.os == 'amd64'
if: matrix.platform.name == 'amd64'
- run: |
sudo apt-get install --assume-yes --no-install-recommends \
libudev-dev \
g++-aarch64-linux-gnu \
libc6-dev-arm64-cross
if: matrix.platform.os == 'arm64'
if: matrix.platform.name == 'arm64'
- run: cargo clippy --no-deps -- --deny "warnings"
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
Expand Down

0 comments on commit 126fd65

Please sign in to comment.