-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run CI against visionOS #26
Conversation
@@ -9,19 +9,19 @@ on: | |||
jobs: | |||
pod-lint: | |||
name: Pod Lint | |||
runs-on: macos-13 | |||
runs-on: macos-14 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
migrating to macOS 14 which is now ARM while we're here
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
- name: Bundle Install | ||
run: bundle install | ||
- name: Select Xcode Version | ||
run: sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer | ||
run: sudo xcode-select --switch /Applications/Xcode_15.2.app/Contents/Developer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Xcode 15.0.1 on macOS 14 is pretty buggy and has a lot of spurious failures. Going to Xcode 15.2 to try to avoid this, plus we need 15.2 for visionOS.
As title!