-
Notifications
You must be signed in to change notification settings - Fork 36
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
Switch to Xcode 15.4 #56
Conversation
e236d03
to
806ebcd
Compare
806ebcd
to
7e613eb
Compare
3ff8513
to
f52f589
Compare
-destination "name=iPhone 6" \ | ||
test | ||
-destination "name=iPhone 11" \ | ||
-sdk iphonesimulator15.0 \ |
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.
This a bit unfortunate but GitHub Actions deprecated the macos_11
runner which would let us test all the way to iOS 13.7. We can figure out alternatives if this is critical but we'd need to download and install a large runtime file.
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.
I think this is fine
- name: List available Xcode versions | ||
run: ls /Applications | grep Xcode | ||
- name: Force Xcode 12.4 | ||
run: sudo xcode-select -switch /Applications/Xcode_12.4.app | ||
- name: List available simulators | ||
run: xcrun simctl list |
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.
Removed these since that information is out in each runner: https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
@@ -1,5 +1,9 @@ | |||
.DEFAULT_GOAL := generate | |||
|
|||
# Code Signing Settings | |||
|
|||
NO_CODE_SIGN_SETTINGS = CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO |
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.
Nice! I was trying to do that in different place fa673da
Thank you!
Xcode 12.4 is not available anymore