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.web11.11981.1664896775989715218 for ; Tue, 04 Oct 2022 08:19:36 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=m8YheM4k; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.201.8.94]) by linux.microsoft.com (Postfix) with ESMTPSA id B950D20E6F4F; Tue, 4 Oct 2022 08:19:34 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com B950D20E6F4F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1664896775; bh=cqY1kNA7NAayM4fyC0PPVSkrjwcCD5X9VUY9G/u+Qlc=; h=From:To:Cc:Subject:Date:From; b=m8YheM4k0hy7lBO07rK4KYFEZ3sfDSAQLjBJCgnZJ9ckgvOR+/vGpwCU0qQs/BnLh CbuOX/NAnKNnAkWIIhgxwP5HShXa8aeg1KpKY8WSeb/Hr5llXDFEHIatHeIxTpC81P VicTKiCx7VX6V0Sxr6dwySjPVCkdVM25t0V6fAjQ= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Hao A Wu , Liming Gao , Michael D Kinney , Sean Brogan Subject: [PATCH v1 0/3] SourceLevelDebugPkg: Enable CI Date: Tue, 4 Oct 2022 11:18:55 -0400 Message-Id: <20221004151858.870-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 REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D4091 1. Fixes pre-existing spelling errors in the package. 2. Adds SourceLevelDebugPkg to edk2 CI. CI results are available in the PR: https://github.com/tianocore/edk2/pull/3439 Cc: Hao A Wu Cc: Liming Gao Cc: Michael D Kinney Cc: Sean Brogan Signed-off-by: Michael Kubacki Michael Kubacki (3): SourceLevelDebugPkg: Fix spelling errors SourceLevelDebugPkg: Add package CI YAML file .azurepipelines: Add SourceLevelDebugPkg to CI SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugAgent.c = | 8 +- SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/SerialIo.c = | 22 ++-- SourceLevelDebugPkg/Library/DebugCommunicationLibSerialPort/DebugCommuni= cationLibSerialPort.c | 2 +- SourceLevelDebugPkg/Library/DebugCommunicationLibUsb/DebugCommunicationL= ibUsb.c | 2 +- SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/Ia32/IntHandlerFun= cs.c | 2 +- SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/X64/IntHandlerFunc= s.c | 2 +- .azurepipelines/templates/pr-gate-build-job.yml = | 2 +- .pytool/CISettings.py = | 1 + SourceLevelDebugPkg/Include/Library/DebugCommunicationLib.h = | 2 +- SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugAgent.h = | 2 +- SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunication= LibUsb3Internal.h | 2 +- SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionL= ib.h | 2 +- SourceLevelDebugPkg/SourceLevelDebugPkg.ci.yaml = | 117 ++++++++++++++++++++ 13 files changed, 142 insertions(+), 24 deletions(-) create mode 100644 SourceLevelDebugPkg/SourceLevelDebugPkg.ci.yaml -- 2.28.0.windows.1