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)