From 90c71baf849542f9ca1a16a68c2883db9f93ae61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Thu, 15 Dec 2022 19:31:42 -0300 Subject: [PATCH] Linux CI: Forgot about libsdl. --- .github/workflows/eepp-linux-build-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/eepp-linux-build-check.yml b/.github/workflows/eepp-linux-build-check.yml index a7f4e1d51..e7dda8910 100644 --- a/.github/workflows/eepp-linux-build-check.yml +++ b/.github/workflows/eepp-linux-build-check.yml @@ -18,7 +18,7 @@ jobs: sudo add-apt-repository universe sudo add-apt-repository multiverse sudo apt update - sudo apt install gcc-12 g++-12 libgl1-mesa-dev libxfixes-dev + sudo apt install gcc-12 g++-12 wget libsdl2-2.0-0 libsdl2-dev sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10 sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 30 @@ -31,6 +31,6 @@ jobs: tar xvzf premake-5.0.0-beta1-linux.tar.gz - name: Build run: | - ./premake5 gmake2 + ./premake5 --with-mojoal gmake2 cd make/linux make all -j$(nproc)