Skip to content

Commit

Permalink
Merge pull request #3233 from pygame-community/ankith26-fix-sdl3-ci
Browse files Browse the repository at this point in the history
Fix SDL3 CI apt issues
  • Loading branch information
gresm authored Nov 21, 2024
2 parents f78f937 + eba1fe8 commit fbdf90a
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 fbdf90a

Please sign in to comment.