Skip to content

Commit

Permalink
Update package dependencies for Linux builds: fix libssh package name
Browse files Browse the repository at this point in the history
  • Loading branch information
samclane committed Sep 16, 2024
1 parent 31ae17e commit 1e917e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libx11-dev libssh-devel cmake
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libx11-dev libssh-dev cmake
if: runner.os == 'linux'
- name: Run tests
run: cargo test --verbose
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
with:
components: clippy
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libx11-dev libssh-devel cmake
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libx11-dev libssh-dev cmake
if: runner.os == 'linux'
- name: Run clippy
run: cargo clippy -- -D warnings
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libx11-dev libssh-devel cmake
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libx11-dev libssh-dev cmake
if: runner.os == 'linux'
- name: Run builds
run: cargo build --verbose

0 comments on commit 1e917e8

Please sign in to comment.