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
The SwiftPM stage added `--verbose` in #79330 to help troubleshoot build error that were occuring on Linux. These errors have since been addresed, but the verbosity was not removed. Remove the `--verbose` command line argument in the SwiftPM portion of the `build-script`.
The SwiftPM stage added `--verbose` in swiftlang#79330 to help troubleshoot build error that were occuring on Linux. These errors have since been addresed, but the verbosity was not removed. Remove the `--verbose` command line argument in the SwiftPM portion of the `build-script`.
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!