Skip to content

Commit

Permalink
iOS/tvOS: Support for Xcode 15.3 (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottrules44 authored Apr 21, 2024
1 parent 4c7f6db commit ec49350
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,48 @@ jobs:
name: Native
path: ./output

Xcode-template-matrix-14:
strategy:
matrix:
runner:
- macos-13
xcode:
- Xcode_15.3
target:
- template
- template-angle
platform:
- iphone
- tvos
needs: source-code
runs-on: ${{ matrix.runner }}
env:
DEVELOPER_DIR: /Applications/${{ matrix.xcode }}.app/Contents/Developer
TEMPLATE_TARGET: ${{ matrix.target }}
TEMPLATE_PLATFORM: ${{ matrix.platform }}
steps:
- run: CDR="$(basename "$(pwd)")" ; cd .. ; rm -rf "$CDR" ; mkdir -p "$CDR" ; cd "$CDR"
- name: Get processed code
uses: actions/download-artifact@v4
with:
name: SourceCode
path: SourceCode
- name: Unpack source code
run: tar -xzf SourceCode/corona.tgz
- run: ./tools/GHAction/daily_env.sh
- name: Build templates
working-directory: ./platform/${{ matrix.platform }}
run: ./gh_build_templates.sh
env:
CERT_PASSWORD: ${{ secrets.CertPassword }}
- name: Build templates JSON spec
run: ./tools/GHAction/generate_xcode_jsons.py
- name: Upload templates
uses: actions/upload-artifact@v4
with:
name: Templates-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.target }}
path: ./output


Xcode-template-matrix-13:
strategy:
Expand Down Expand Up @@ -207,6 +249,7 @@ jobs:
- Xcode-template-matrix
- Xcode-template-matrix-12
- Xcode-template-matrix-13
- Xcode-template-matrix-14
runs-on: ubuntu-20.04
steps:
- run: CDR="$(basename "$(pwd)")" ; cd .. ; rm -rf "$CDR" ; mkdir -p "$CDR" ; cd "$CDR"
Expand Down

0 comments on commit ec49350

Please sign in to comment.