Linux CI: Forgot about libsdl.

This commit is contained in:
Martín Lucas Golini
2022-12-15 19:31:42 -03:00
parent d9c597573f
commit 90c71baf84

View File

@@ -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)