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: watchos-jobs | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| types: [ opened, synchronize ] | |
| jobs: | |
| build_with_15_4_WATCHOS: | |
| name: "Xcode version 15.4, Target watchOS [armv7k, arm64_32] Target SDK 10.5" | |
| runs-on: macos-14 | |
| env: | |
| PLATFORM: WATCHOS | |
| DEPLOYMENT_TARGET: 10.5 | |
| 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_0_1_SIMULATOR_WATCHOS: | |
| name: "Xcode version 15.0.1, Target watchOS Simulator [x86_64] Target SDK 10.0" | |
| runs-on: macos-13 | |
| env: | |
| PLATFORM: SIMULATOR_WATCHOS | |
| DEPLOYMENT_TARGET: 10.0 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '15.0.1' | |
| - name: Build | |
| run: ./.github/build.sh | |
| build_with_15_0_1_SIMULATORARM64_WATCHOS: | |
| name: "Xcode version 15.0.1, Target watchOS Simulator [arm64] Target SDK 10.0" | |
| runs-on: macos-13 | |
| env: | |
| PLATFORM: SIMULATORARM64_WATCHOS | |
| DEPLOYMENT_TARGET: 10.0 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '15.0.1' | |
| - name: Build | |
| run: ./.github/build.sh |