From 72459497a45a25d02ace4e1c0b65b5f9c56f1680 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..fc41484 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: apt-get update -y && 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