Merge pull request #178 from lalomartins/simulator-combined #69
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: catalyst-jobs | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
types: [ opened, synchronize ] | |
jobs: | |
build_with_13_1_MAC_CATALYST: | |
name: "Xcode version 13.1, Target macOS Catalyst on Intel CPUs [x86_64] Target SDK 13.1" | |
runs-on: macos-11 | |
env: | |
PLATFORM: MAC_CATALYST | |
DEPLOYMENT_TARGET: "13.1" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '13.1' | |
- name: Build | |
run: ./.github/build.sh | |
build_with_13_4_MAC_CATALYST_ARM64: | |
name: "Xcode version 13.4, Target macOS Catalyst on Apple Silicon [arm64] Target SDK 13.1" | |
runs-on: macos-12 | |
env: | |
PLATFORM: MAC_CATALYST_ARM64 | |
DEPLOYMENT_TARGET: "13.1" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '13.4' | |
- name: Build | |
run: ./.github/build.sh |