From 557e8d2a3be9a62c1e41157a205f698845898eeb Mon Sep 17 00:00:00 2001 From: Tristan Guichaoua Date: Fri, 11 Aug 2023 20:13:53 +0200 Subject: [PATCH] ci: add "Install alsa and udev" --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a407f2..71b753d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,9 @@ jobs: steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable + - name: Install alsa and udev + run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + if: runner.os == 'linux' - name: No features run: cargo check --no-default-features - name: All features @@ -29,6 +32,9 @@ jobs: steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable + - name: Install alsa and udev + run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + if: runner.os == 'linux' - run: cargo test --all-features fmt: