Skip to content

Commit

Permalink
Bump SDL to 2.30.9, SDL_mixer to 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bvschaik committed Nov 18, 2024
1 parent f722d9c commit 21f64a2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .ci_scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ function install_sdl_macos {
mkdir -p ~/Library/Frameworks
echo "Installing framework:" "/Volumes/SDL2"/*.framework
cp -rp "$VOLUME"/*.framework ~/Library/Frameworks
if [ -d "$VOLUME/optional" ]
then
echo "Installing optional framework:" "/Volumes/SDL2/optional"/*.framework
cp -rp "$VOLUME"/optional/*.framework ~/Library/Frameworks
fi
hdiutil detach "$VOLUME"
}

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
- name: Linux x64
os: ubuntu-20.04
cache-key: linux-x64
SDL_VERSION: 2.26.4
SDL_MIXER_VERSION: 2.6.2
SDL_VERSION: 2.30.9
SDL_MIXER_VERSION: 2.8.0
BUILD_TARGET: linux
DEPLOY: linux
- name: Linux x64 (old SDL versions)
Expand All @@ -39,8 +39,8 @@ jobs:
- name: macOS
os: macos-latest
cache-key: macos
SDL_VERSION: 2.26.4
SDL_MIXER_VERSION: 2.6.2
SDL_VERSION: 2.30.9
SDL_MIXER_VERSION: 2.8.0
BUILD_TARGET: mac
DEPLOY: mac
- name: Nintendo Switch
Expand All @@ -54,8 +54,8 @@ jobs:
- name: Android
os: ubuntu-20.04
cache-key: android
SDL_VERSION: 2.26.4
SDL_MIXER_VERSION: 2.6.2
SDL_VERSION: 2.30.9
SDL_MIXER_VERSION: 2.8.0
BUILD_TARGET: android
DEPLOY: android
- name: Emscripten
Expand Down Expand Up @@ -125,8 +125,8 @@ jobs:
name: ${{ matrix.name }}
runs-on: windows-latest
env:
SDL_VERSION: 2.26.4
SDL_MIXER_VERSION: 2.6.2
SDL_VERSION: 2.30.9
SDL_MIXER_VERSION: 2.8.0
COMPILER: ${{ matrix.COMPILER }}
SKIP_UPLOAD: ${{ matrix.SKIP_UPLOAD }}
steps:
Expand Down
3 changes: 2 additions & 1 deletion android/SDL2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ android {
arguments 'SUPPORT_FLAC=false',
'SUPPORT_OGG=false',
'SUPPORT_MOD_MODPLUG=false',
'SUPPORT_MID_TIMIDITY=false'
'SUPPORT_MID_TIMIDITY=false',
'SUPPORT_WAVPACK=false'
}
}
}
Expand Down

0 comments on commit 21f64a2

Please sign in to comment.