Try again

This commit is contained in:
Cong
2025-02-08 16:21:47 +11:00
parent 7e49d27256
commit 00e4d80e09
2 changed files with 6 additions and 2 deletions

View File

@@ -55,13 +55,15 @@ jobs:
- name: Install SDL via homebrew (Linux)
# Because ubuntu 22 doesn't have the latest SDL libs
if: matrix.os == 'ubuntu-latest'
run: brew install sdl2 sdl2_mixer sdl2_image libxmp
run: brew install sdl2 sdl2_mixer sdl2_image
- name: Install packages (Linux)
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt install python3-pip libgl1-mesa-dev
# Extra libs to fix "Could NOT find libxmp"
sudo apt install libxmp-dev libwavpack-dev libfluidsynth-dev fluidsynth
python3 -m pip install protobuf --break-system-packages
pip3 install --upgrade protobuf --break-system-packages
# libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev

View File

@@ -55,13 +55,15 @@ jobs:
- name: Install SDL via homebrew (Linux)
# Because ubuntu 22 doesn't have the latest SDL libs
if: matrix.os == 'ubuntu-latest'
run: brew install sdl2 sdl2_mixer sdl2_image libxmp
run: brew install sdl2 sdl2_mixer sdl2_image
- name: Install packages (Linux)
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt install python3-pip libgl1-mesa-dev
# Extra libs to fix "Could NOT find libxmp"
sudo apt install libxmp-dev libwavpack-dev libfluidsynth-dev fluidsynth
python3 -m pip install protobuf --break-system-packages
pip3 install --upgrade protobuf --break-system-packages
# libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev