Skip to content

Commit

Permalink
Fix SDL3 CI apt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ankith26 committed Nov 21, 2024
1 parent 3b850e7 commit eba1fe8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-sdl3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ jobs:

- name: Install pygame deps (linux)
if: matrix.os == 'ubuntu-24.04'
run: sudo apt-get install libfreetype6-dev libportmidi-dev python3-dev
run: |
sudo apt-get update --fix-missing
sudo apt-get install libfreetype6-dev libportmidi-dev python3-dev
- name: Install pygame deps (mac)
if: matrix.os == 'macos-14'
Expand Down

0 comments on commit eba1fe8

Please sign in to comment.