From 1e917e8a0cb275ec22609e8ec5d0723272091e58 Mon Sep 17 00:00:00 2001 From: Sawyer McLane Date: Mon, 16 Sep 2024 14:16:16 -0600 Subject: [PATCH] Update package dependencies for Linux builds: fix libssh package name --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3af1b9b..1e0d1e1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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 @@ -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 \ No newline at end of file