From b15ac3581b197b0e45d33e3bb2e858374a15a7ca Mon Sep 17 00:00:00 2001 From: t4ccer Date: Sun, 15 Sep 2024 17:31:18 -0600 Subject: [PATCH] Install C deps in GH actions --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b82b599..2e4345e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,10 @@ jobs: components: rustfmt, clippy targets: wasm32-unknown-unknown + - name: Install raylib dependencies + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get update -y && sudo apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev -y + - name: Add mingw64 to path for x86_64-gnu if: matrix.os == 'windows-latest' run: echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH