Use build as message version, handshake with names #12
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: CI | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
scheme: [macOS, visionOS] | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_15.2.app | |
- name: Set up visionOS SDK | |
if: matrix.scheme == 'visionOS' | |
run: | | |
defaults write com.apple.dt.Xcode AllowUnsupportedVisionOSHost -bool YES | |
defaults write com.apple.CoreSimulator AllowUnsupportedVisionOSHost -bool YES | |
xcodebuild -downloadPlatform visionOS | |
- name: System Info | |
run: | | |
uname -a | |
xcodebuild -version | |
- name: Build | |
run: xcodebuild -project MacCast.xcodeproj -scheme ${{ matrix.scheme }} CODE_SIGNING_ALLOWED=NO |