-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Replace custom path type with URL in plugin API #7184
Conversation
@swift-ci please test |
Two things to point out:
|
I will look into adding a few new test cases which exercise the new APIs instead of the old ones. |
I'm actually a bit surprised that the test suite passes, I seem to be able to see problems with rather trivial manual testing... |
Ah fun, turns out if you ever build using |
0f0d56c
to
ffdb487
Compare
Added a test now which exercises both build tool and prebuild APIs using URLs. This required bumping our version to 5.11 so that the new APIs can be used in the example. I think two tasks remain for this PR:
|
ffdb487
to
0783c4c
Compare
|
||
struct CommandConfiguration: Codable { | ||
var version = 2 |
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.
Used this as a simple way to "version" the library. This allows us to detect cases where an old plugin library is being used with a newer SwiftPM which would otherwise silently exhibit broken behavior.
I think this should be ready now. There are still a handful of deprecation warnings that I am not certain how to resolve. |
@swift-ci please test |
@swift-ci please test package compatibility |
@swift-ci please test windows |
Hm, looks like on Linux, we don't see the "Applying" messages for plugins? |
Yah, I'm seeing this locally, too. It seems like we have accidentally created a dependency on 5.10 compilers here which hide the async main symbol. |
I'm puzzled why this error didn't surface previously on CI when testing PRs that introduced this async entrypoint in the first place. Are reverts to those entrypoints the only available fix? |
AFAIU the error wasn't independently reproducible with any of the |
@swift-ci test |
Will this break plugins? How can a plugin detect when it should use |
The API is additive, thus not expected to break anything. IIUC, plugins using new |
Thanks! |
Yep, plugins declared in packages with tools-version 5.10 and earlier will work exactly as before. When upgrading a package to 5.11, there'll be deprecation warnings for |
Ah, the "Applying" message doesn't show on Linux, because it is from |
Was able to resolve the last few deprecation warnings with @tomerd's help -- there was even a small bug hiding in there with an optional property not being set in the URL case. |
Plugins introduced their own custom path type which doesn't have Windows support, causing several issues with plugins on Windows. We should rectify this situation by using Foundation's URL type instead which already works fine on Windows. rdar://117230149
0783c4c
to
7185d6d
Compare
@swift-ci please test |
@swift-ci please test package compatibility |
@swift-ci please test windows |
3 similar comments
@swift-ci please test windows |
@swift-ci please test windows |
@swift-ci please test windows |
@swift-ci test windows |
1 similar comment
@swift-ci test windows |
Seeing the same test failure on Windows multiple time in a row now, so probably real:
cc @compnerd |
It seems to be passing on the swift repository 🤔 CC: @xedin who added this test swiftlang/swift#70391 is the original introduction |
Seems to be failing on macOS: https://ci.swift.org/job/apple-llvm-project-pr-macos/4371/console |
Sounds like swiftlang/swift#70470 is supposed to fix it. |
@swift-ci test windows |
Plugins introduced their own custom path type which doesn't have Windows support, causing several issues with plugins on Windows. We should rectify this situation by using Foundation's URL type instead which already works fine on Windows.
rdar://117230149