We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e6fbec commit 707b5b3Copy full SHA for 707b5b3
.github/workflows/ios.yml
@@ -35,12 +35,14 @@ jobs:
35
- uses: actions/checkout@v5
36
with:
37
submodules: recursive
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
47
- name: Build
48
run: bash ios/build.sh
- - name: Test
- run: exit 0 # cmake --build build --target check
- - name: Demo
- run: exit 0 #cmake --build build --target demo
0 commit comments