-
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
Plugins can no longer access output locations on an external drive #6948
Comments
Could you provide a minimal Xcode Project / Swift Package to reproduce the issue you report? Thanks @tomas-bat |
If I understand this issue correctly, you're only seeing this in Xcode? Or also when using the SwiftPM CLI, e.g. with |
@Kyle-Ye Sure, here's the Swift Package: https://github.com/tomas-bat/spm-derived-data-issue
@neonichu It also fails when using the SwiftPM CLI:
This error does not appear when the scratch path is set to a location on the main drive, e.g. |
I was wondering whether #6910 would be the culprit here, but it is actually not part of 5.9 yet, it has been merged to the branch to end up in the next 5.9 update. So now I am wondering instead whether that is a fix, I'll try to validate that soon. |
I have successfully reproduced the issue locally. The sandbox profile seems fine. And I tried it with my demo CLI app. So I suspect there was a bug in "SwiftGen" binary.
I made a clone locally and replaced the swiftgen path in the command to try to debug it.
After some debugging, I found the problem is an implementation detail of the write method. SwiftGen currently use try path.write(content) extension Path {
public func write(_ string: String, encoding: String.Encoding = String.Encoding.utf8) throws {
try string.write(toFile: normalize().path, atomically: true, encoding: encoding)
}
} Following the existing API of SwiftGen, we may try to use the try path.write(content.data(using: .utf8)!) extension Path {
public func write(_ data: Data) throws {
try data.write(to: normalize().url, options: .atomic)
}
} In conclusion, for external Volume sandbox file writing:
A short fix for this issue is a PR for SwiftGen. A long fix is digging why such API is not working on such case. But Sandbox implementation on macOS and Foundation on Darwin Platform is not open sourced. Maybe file a Feedback issue to Apple to the only thing we can do. Anyway this should not be an issue of SwiftPM. |
Thanks for the investigation, sounds like the problem should indeed be fixed by #6910 then. The issue is that the atomic versions of these APIs write to a temporary side location on the external volume that isn't part of the sandbox profile in 5.9, so it gets denied. |
Since this is already fixed by the upstream. I think I do not need to create a PR to do the temporary fix. (A PR for SwiftGen -> merged -> Release a new SwiftGen version -> A update version PR for SwiftGenPlugin -> merged -> You issue is fixed) Rather let's wait for the next Xcode version which will bring the fix in Swift 5.9.1 cc @tomas-bat |
Tested it with Xcode 15.1 Beta - Swift 5.9 (5.9.2.1.6) and still fails. Looks like the fix commit is not included yet. Hope to see it landing on the release of Xcode 15.1. |
tested on Xcode 15.1 beta 3 and still fails |
Xcode 15.1 RC use the same Swift version as Xcode 15.1 Beta 3 - Swift 5.9.2 (5.9.2.2.56) Looks like we'll have to wait for the next Xcode releasing 😂 |
Is the fix still not released? I hit the same issue with latest Xcode 15.2.0 (swift 5.9.2). Xcode Cloud seems to use DerivedData folder on an external drive, so this issue here makes it impossible to use e.g. SwiftGenPlugin in projects build on Xcode Cloud |
Expected. Xcode 15.2 use the same version of Swift as Xcode 15.1 - Swift 5.9.2 (5.9.2.2.56). |
If anyone is eager is for a fix. You can try fork SwiftGenPlugin and apply the patch I mentation in #6948 (comment) |
Thanks, I tried fixing it like you said - instead of using |
Description
After updating to Xcode 15 & Swift 5.9, all plugins that generate code or update source code (SwiftGenPlugin, Swiftlint, ...) can no longer access output locations, if
DerivedData
is manually set to a custom location in Xcode settings (on an external drive).If
DerivedData
is set to a default location, it works correctly.Expected behavior
Plugins should be able to access output locations even if
DerivedData
is on an external drive.Actual behavior
Plugins cannot access the output locations and fail with
Steps to reproduce
DerivedData
location to an external drive (Xcode -> Settings -> Locations)Swift Package Manager version/commit hash
Swift Package Manager, Swift 5.9
Swift & OS version (output of
swift --version ; uname -a
)The text was updated successfully, but these errors were encountered: