-
Notifications
You must be signed in to change notification settings - Fork 109
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
[core] Remove platform dance in Package.swift #400
Conversation
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.
Looks like this changes breaks the CI
let package = Package( | ||
name: "swift-aws-lambda-runtime", | ||
platforms: platforms, | ||
platforms: [.macOS(.v15)], |
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 breaks the Swift 6 nightly and swift 6 language mode CI actions
/__w/swift-aws-lambda-runtime/swift-aws-lambda-runtime/Package.swift:7:25: error: reference to member 'v15' cannot be resolved without a contextual type
5 | let package = Package(
6 | name: "swift-aws-lambda-runtime",
7 | platforms: [.macOS(.v15)],
| `- error: reference to member 'v15' cannot be resolved without a contextual type
8 | products: [
9 | // this library exports `AWSLambdaRuntimeCore` and adds Foundation convenience methods
@fabianfett can you cross reference the issue you opened (or will open) on the SwiftPM project ? |
This change no longer breaks the CI, merging |
No description provided.