From 2d9b9852fbf4660fced14666ddbf3df337d4735f Mon Sep 17 00:00:00 2001 From: tigerplush <64077786+tigerplush@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:01:18 +0200 Subject: [PATCH] only install dependencies when on linux --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a15a89c..eeedd0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,5 +30,6 @@ jobs: - uses: dtolnay/rust-toolchain@stable - name: Install Dependencies run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev + if: ${{ runner.os == 'linux' }} - name: Build run: cargo build