Seems to fix crash in Audulus after updating to Xcode 16.3 🤷 #577
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 | |
| on: [push, pull_request] | |
| env: | |
| XCODE_VER: 12.4 | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out vger | |
| uses: actions/checkout@v4.1.1 | |
| - name: Build vger | |
| run: | | |
| set -euo pipefail | |
| xcodebuild -scheme vger -destination 'platform=OS X,arch=x86_64' clean build | xcpretty | |
| demo: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out vger-demo | |
| uses: actions/checkout@v4.1.1 | |
| - name: Build vger-demo | |
| run: | | |
| set -euo pipefail | |
| cd Demo | |
| xcodebuild -scheme "VgerDemo (macOS)" -destination 'platform=OS X,arch=x86_64' clean build | xcpretty | |