fix for SDL_DC_TEXTURED_VIDEO, default video init to 320x240, for sup… #102
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build (iOS/tvOS) | |
on: [push, pull_request] | |
jobs: | |
Build: | |
name: ${{ matrix.platform.name }} | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- { name: iOS, target: Static Library-iOS, sdk: iphoneos } | |
- { name: tvOS, target: Static Library-tvOS, sdk: appletvos } | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: xcodebuild -project Xcode/SDL/SDL.xcodeproj -target '${{ matrix.platform.target }}' -configuration Release -sdk ${{ matrix.platform.sdk }} clean build |