-
Notifications
You must be signed in to change notification settings - Fork 55
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
Add support for Sendable #211
Conversation
2d36449
to
02d50b0
Compare
f3120d4
to
fae5cd2
Compare
104012b
to
2e4cccb
Compare
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.
LGTM with a few nits
Package.swift
Outdated
//for target in package.targets where target.type != .system { | ||
// target.swiftSettings = target.swiftSettings ?? [] | ||
// target.swiftSettings?.append( | ||
// .unsafeFlags([ | ||
// "-emit-module-interface", "-enable-library-evolution", | ||
// "-Xfrontend", "-warn-concurrency", | ||
// "-Xfrontend", "-enable-actor-data-race-checks", | ||
// "-Xfrontend", "-require-explicit-sendable", | ||
// ]) | ||
// ) | ||
//} |
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.
Should we remove that?
- build_and_test_linux | ||
- build_and_test_macos: | ||
matrix: | ||
parameters: | ||
xcode_version: [13.4.1, 14.3.1, 15.1.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.
Should we add a build_for_library_evolution
job to the list as well?
All public types are marked as Sendable.
Additionally replacing Travis with CircleCI for consistency with other Mapbox projects.