🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
565 B

  1. name: Build (iOS/tvOS)
  2. on: [push, pull_request]
  3. jobs:
  4. Build:
  5. name: ${{ matrix.platform.name }}
  6. runs-on: macos-latest
  7. strategy:
  8. fail-fast: false
  9. matrix:
  10. platform:
  11. - { name: iOS, target: Static Library-iOS, sdk: iphoneos }
  12. - { name: tvOS, target: Static Library-tvOS, sdk: appletvos }
  13. steps:
  14. - uses: actions/checkout@v3
  15. - name: Build
  16. run: xcodebuild -project Xcode/SDL/SDL.xcodeproj -target '${{ matrix.platform.target }}' -configuration Release -sdk ${{ matrix.platform.sdk }} clean build