summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-2.30.2/.github/workflows/ios.yml
diff options
context:
space:
mode:
Diffstat (limited to 'src/contrib/SDL-2.30.2/.github/workflows/ios.yml')
-rw-r--r--src/contrib/SDL-2.30.2/.github/workflows/ios.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/contrib/SDL-2.30.2/.github/workflows/ios.yml b/src/contrib/SDL-2.30.2/.github/workflows/ios.yml
new file mode 100644
index 0000000..1eb5735
--- /dev/null
+++ b/src/contrib/SDL-2.30.2/.github/workflows/ios.yml
@@ -0,0 +1,20 @@
1name: Build (iOS/tvOS)
2
3on: [push, pull_request]
4
5jobs:
6 Build:
7 name: ${{ matrix.platform.name }}
8 runs-on: macos-latest
9
10 strategy:
11 fail-fast: false
12 matrix:
13 platform:
14 - { name: iOS, target: Static Library-iOS, sdk: iphoneos }
15 - { name: tvOS, target: Static Library-tvOS, sdk: appletvos }
16
17 steps:
18 - uses: actions/checkout@v4
19 - name: Build
20 run: xcodebuild -project Xcode/SDL/SDL.xcodeproj -target '${{ matrix.platform.target }}' -configuration Release -sdk ${{ matrix.platform.sdk }} clean build \ No newline at end of file