summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-2.30.2/.github/workflows/ios.yml
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2024-05-04 16:51:29 -0700
committer3gg <3gg@shellblade.net>2024-05-04 16:51:29 -0700
commit8222bfe56d4dabe8d92fc4b25ea1b0163b16f3e1 (patch)
tree763389e42276035ac134d94eb1dc32293b88d807 /src/contrib/SDL-2.30.2/.github/workflows/ios.yml
Initial commit.
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