-
Notifications
You must be signed in to change notification settings - Fork 129
Extend the availability annotations for the Netrc support to cover all the Darwin platforms #218
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
Conversation
…l the Darwin platforms This extends the availability based on the version numbers in the annotation for `NSTextCheckingResult.range(withName name: String) -> NSRange`. Otherwise, ToolsSupportCore can no longer build on for example iOS, because the default minimum deployment targets for the various platforms are really old (e.g. iOS 9).
@swift-ci please smoke test |
@swift-ci please test |
The Linux failure seem odd:
|
It's while building |
There shouldn't really be a need to build the Swift compiler, but it doesn't seem that TSC supports smoke tests. |
@swift-ci please test linux |
Failed again. Looks like we're building with |
@swift-ci please test linux |
@shahmishal CI infra issue? |
swiftlang/swift#37837 |
…ver all the Darwin platforms (#218) This extends the availability based on the version numbers in the annotation for `NSTextCheckingResult.range(withName name: String) -> NSRange`. Otherwise, ToolsSupportCore can no longer build on for example iOS, because the default minimum deployment targets for the various platforms are really old (e.g. iOS 9). (cherry picked from commit d6c996e)
…ver all the Darwin platforms (#218) (#223) This extends the availability based on the version numbers in the annotation for `NSTextCheckingResult.range(withName name: String) -> NSRange`. Otherwise, ToolsSupportCore can no longer build on for example iOS, because the default minimum deployment targets for the various platforms are really old (e.g. iOS 9). (cherry picked from commit d6c996e)
This PR extends the availability annotation for the Netrc support to cover all the version numbers for the various Darwin platforms in the annotation for
NSTextCheckingResult.range(withName name: String) -> NSRange
in the SDK. Otherwise, ToolsSupportCore can no longer build on non-macOS Darwin platforms such as iOS, because the default minimum deployment targets for the various platforms are really old (e.g. iOS 9).