Skip to content

Commit 707b5b3

Browse files
committed
Use SDL3 on iOS CI build
1 parent 1e6fbec commit 707b5b3

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ios.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@ jobs:
3535
- uses: actions/checkout@v5
3636
with:
3737
submodules: recursive
38-
38+
- name: Build Dependencies
39+
run: |
40+
git clone https://github.com/libsdl-org/SDL.git && \
41+
pushd SDL && \
42+
git checkout release-3.2.24 && \
43+
xcodebuild -project Xcode/SDL/SDL.xcodeproj -target "SDL3.xcframework" -configuration Release SYMROOT="build/" && \
44+
mkdir build && \
45+
cp -r Xcode/SDL/build/SDL3.xcframework build/ && \
46+
popd
3947
- name: Build
4048
run: bash ios/build.sh
41-
42-
- name: Test
43-
run: exit 0 # cmake --build build --target check
44-
45-
- name: Demo
46-
run: exit 0 #cmake --build build --target demo

0 commit comments

Comments
 (0)