Reimplement polling expectations to make them more reliable under heavy system loads #640
Workflow file for this run
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: CI (Xcode) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "*" | |
| pull_request: | |
| branches: | |
| - "*" | |
| jobs: | |
| xcode_sonoma: | |
| name: Xcode ${{ matrix.xcode }} (Xcode Project) | |
| runs-on: macos-14 | |
| strategy: | |
| matrix: | |
| xcode: ["16.1"] | |
| fail-fast: false | |
| env: | |
| DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: ./test macos | |
| - run: ./test ios | |
| - run: ./test tvos | |
| - run: ./test watchos | |
| xcode_sequoia: | |
| name: Xcode ${{ matrix.xcode }} (Xcode Project) | |
| runs-on: macos-15 | |
| strategy: | |
| matrix: | |
| xcode: ["16.3"] | |
| fail-fast: false | |
| env: | |
| DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: ./test macos | |
| - run: ./test ios | |
| - run: ./test tvos | |
| - run: ./test watchos | |
| xcode_spm: | |
| name: Xcode ${{ matrix.xcode }} (Swift Package) | |
| runs-on: macos-15 | |
| strategy: | |
| matrix: | |
| xcode: ["16.3"] | |
| fail-fast: false | |
| env: | |
| DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: ./test macos_xcodespm | |
| - run: ./test ios_xcodespm | |
| - run: ./test tvos_xcodespm | |
| - run: ./test watchos_xcodespm |