SDL/.github/workflows/ios.yml

25 lines
667 B
YAML
Raw Normal View History

2021-11-24 12:21:48 -07:00
name: Build (iOS/tvOS)
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
2021-11-24 12:21:48 -07:00
jobs:
Build:
name: ${{ matrix.platform.name }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
platform:
- { name: iOS, target: SDL3, sdk: iphoneos }
- { name: tvOS, target: SDL3, sdk: appletvos }
2021-11-24 12:21:48 -07:00
steps:
2024-01-25 18:33:20 -07:00
- uses: actions/checkout@v4
2021-11-24 12:21:48 -07:00
- name: Build
run: xcodebuild -project Xcode/SDL/SDL.xcodeproj -target '${{ matrix.platform.target }}' -configuration Release -sdk ${{ matrix.platform.sdk }} clean build