From 2d1b819b67fae1efdc6feb36e26f67b09e8830d1 Mon Sep 17 00:00:00 2001 From: Nicky Dasmijn Date: Fri, 5 Apr 2024 15:42:59 +0200 Subject: [PATCH] Update Linux dependencies (#1) openal will not enable all audio backends without finding the required headers. This should enable the most popular ones --- .github/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f482e10..1b87954 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,6 +13,10 @@ jobs: os: [windows-2022, macos-13, ubuntu-22.04] runs-on: ${{ matrix.os }} steps: + - name: Install Linux depencencies + if: runner.os == 'linux' + run: sudo apt update && sudo apt install -y libpulse-dev libsndio-dev pipewire libasound2-dev libsdl2-dev libjack-dev + - uses: secondlife/action-autobuild@v3 with: addrsize: "64"