-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Add verbosity when building swiftpm #79330
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 verbosity when building swiftpm #79330
Conversation
Should this include the Windows side of the world as well? (i.e. |
@compnerd Likely, yes. I'm not familiar with Powershell script. Could you please share an equivalent diff that I can apply? EDIT: After looking at the |
please test with PR: @swift-ci please test |
Ah, I didn't realise that this was only for the build of SPM itself. Yes, we build SPM with CMake on Windows. |
There have been cases where CI build failurse did not have sufficient logs when it failed during a Swift PM build/test. Augment the Swift PM build/test by enabling verbosity. Update `Utilities/bootstrap` to call swift pm executable targets using `--very-verbose` instead of `--versobe` when the tool is invoked with `--verbose`. Requires swiftlang/swift#79330
There have been cases where CI build failurse did not have sufficient logs when it failed during a Swift PM build/test. Augment the Swift PM build/test by enabling verbosity. Update `Utilities/bootstrap` to call swift pm executable targets using `--very-verbose` instead of `--versobe` when the tool is invoked with `--verbose`. Requires swiftlang/swift#79330
There have been cases where CI build failures on Linux did not have sufficient logs when it failed during a Swift PM build/test. Augment the Swift PM build/test by enabling verbosity!