From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web08.2950.1650418676878440410 for ; Tue, 19 Apr 2022 18:37:56 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=ocbeEJjM; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id 79F0F20DFD69; Tue, 19 Apr 2022 18:37:55 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 79F0F20DFD69 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1650418676; bh=EQSCNV+hAPpRtlC3IZSWFOye+voTO3uQEVP/OgCA/iE=; h=From:To:Cc:Subject:Date:From; b=ocbeEJjM5eZieFYXTpwFq7pzUMmDV1gGV05ugB9BHKDrPsz2wDobeszzhCsa1P0Tm nI4mdPS3faFw5QvRoIWmdD7bsPgdyaeJhtYyBGJtWAjGFnV1Y84tlht2A0Uszkbwfq 6nGuO/saVbTYlr0we6F7XeMHrHC31hg51BR80XnM= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao , Sean Brogan , Bret Barkelew Subject: [PATCH v1 1/1] .pytool/Plugin/UncrustifyCheck: Add Azure DevOps UI debug instructions Date: Tue, 19 Apr 2022 21:37:36 -0400 Message-Id: <20220420013736.1658-1-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki 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 Cc: Liming Gao Cc: Sean Brogan Cc: Bret Barkelew Signed-off-by: Michael Kubacki --- .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 =3D len(formatted_files) =20 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/E= DK-II-Code-Formatting#how-to-find-uncrustify-formatting-errors-in-continu= ous-integration-ci") self._tc.LogStdError("Files with formatting errors:\n") =20 if self._output_file_diffs: --=20 2.28.0.windows.1