From: Michael Kubacki <[email protected]> Adds a link to the log output that contains instructions on how find detailed file formatting errors in the Azure DevOps UI.
Cc: Michael D Kinney <[email protected]> Cc: Liming Gao <[email protected]> Cc: Sean Brogan <[email protected]> Cc: Bret Barkelew <[email protected]> Signed-off-by: Michael Kubacki <[email protected]> --- .pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py b/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py index 22cca0ff1101..00d78864656f 100644 --- a/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py +++ b/.pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py @@ -562,6 +562,11 @@ class UncrustifyCheck(ICiBuildPlugin): self._formatted_file_error_count = len(formatted_files) if self._formatted_file_error_count > 0: + logging.error( + "Visit the following instructions to learn " + "how to find the detailed formatting errors in Azure " + "DevOps CI: " + "https://github.com/tianocore/tianocore.github.io/wiki/EDK-II-Code-Formatting#how-to-find-uncrustify-formatting-errors-in-continuous-integration-ci") self._tc.LogStdError("Files with formatting errors:\n") if self._output_file_diffs: -- 2.28.0.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89098): https://edk2.groups.io/g/devel/message/89098 Mute This Topic: https://groups.io/mt/90576240/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
