Removed manual arch setting for ASM (#224) #125
This file contains hidden or 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_14_2_MAC_CATALYST: | |
| name: "Xcode version 14.2, Target macOS Catalyst on Intel CPUs [x86_64] Target SDK 16.2" | |
| runs-on: macos-13 | |
| env: | |
| PLATFORM: MAC_CATALYST | |
| DEPLOYMENT_TARGET: 16.2 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '14.2' | |
| - name: Build | |
| run: ./.github/build.sh | |
| build_with_15_4_MAC_CATALYST_ARM64: | |
| name: "Xcode version 15.4, Target macOS Catalyst on Apple Silicon [arm64] Target SDK 17.2" | |
| runs-on: macos-14 | |
| env: | |
| PLATFORM: MAC_CATALYST_ARM64 | |
| DEPLOYMENT_TARGET: 17.2 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '15.4' | |
| - name: Build | |
| run: ./.github/build.sh | |
| build_with_15_4_MAC_CATALYST_UNIVERSAL: | |
| name: "Xcode version 15.4, Target macOS Catalyst on Intel CPUs [x86_64] and Apple Silicon [arm64] Target SDK 17.2" | |
| runs-on: macos-14 | |
| env: | |
| PLATFORM: MAC_CATALYST_UNIVERSAL | |
| DEPLOYMENT_TARGET: 17.2 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '15.4' | |
| - name: Build | |
| run: ./.github/build.sh |