From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 9CBE5780091 for ; Tue, 10 Oct 2023 07:44:42 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=EmpCQAwHj/XatFulJgM5ClE/nj1VEFRw6x3reFIN71w=; c=relaxed/simple; d=groups.io; h=MIME-Version:References:In-Reply-To:From:Date:Message-ID:Subject:To:Cc:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type:Content-Transfer-Encoding; s=20140610; t=1696923881; v=1; b=Bb8FFoiLPHO6cZmwaGFuzwWOkJX4AX1/tU6HVwoGzoP3MTWoSmmYI99kKYOLhmA/8BIsSAFi ujW/FHkKKo9SIe17ewNQ+1QJV0pu/lc9n/Nabfzi66tj8NAq2gp7c9Hanw2ABLZrB/uX9Sfcl/M v4rQO2rX4LAx682s58XrIf68= X-Received: by 127.0.0.2 with SMTP id yDZEYY7687511xc6j3UCSooX; Tue, 10 Oct 2023 00:44:41 -0700 X-Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by mx.groups.io with SMTP id smtpd.web11.85539.1696923880361805668 for ; Tue, 10 Oct 2023 00:44:40 -0700 X-Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 95CBF61544 for ; Tue, 10 Oct 2023 07:44:39 +0000 (UTC) X-Received: by smtp.kernel.org (Postfix) with ESMTPSA id 44708C433C9 for ; Tue, 10 Oct 2023 07:44:39 +0000 (UTC) X-Received: by mail-lf1-f52.google.com with SMTP id 2adb3069b0e04-50337b43ee6so6912524e87.3 for ; Tue, 10 Oct 2023 00:44:39 -0700 (PDT) X-Gm-Message-State: NotjoDS5lD2CQrcBzVm2nQiRx7686176AA= X-Google-Smtp-Source: AGHT+IHUOebYRgMpt7UQcyW2o0jA6jDkpYRzIS+ApujYX3l5E2YTtMdEPHvfWp2oPErUSTTu3tas+2Y5pb5ZcRYXypw= X-Received: by 2002:a19:4f43:0:b0:500:a240:7240 with SMTP id a3-20020a194f43000000b00500a2407240mr14502046lfk.52.1696923877484; Tue, 10 Oct 2023 00:44:37 -0700 (PDT) MIME-Version: 1.0 References: <20230626213434.8-1-joey.vagedes@gmail.com> <20230626213434.8-14-joey.vagedes@gmail.com> In-Reply-To: From: "Ard Biesheuvel" Date: Tue, 10 Oct 2023 09:44:26 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-devel] [PATCH v1 13/24] StandaloneMmPkg: CI: Add PrEval entry To: Joey Vagedes Cc: devel@edk2.groups.io, Sami Mujawar , Ray Ni Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,ardb@kernel.org List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=Bb8FFoiL; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=kernel.org (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io On Mon, 9 Oct 2023 at 18:49, Joey Vagedes wrote: > > Hello All, > > Due to a Subject Line mistake, this particular patch was labeled as a Cry= ptoPkg change. I'm resending this out to the package maintainers with the c= orrect package (StandaloneMmPkg). > > Please review this change to your package's ci.yaml file ~ This change wi= ll ensure your package is properly tested if another package changes an INF= that your package depends on to build, making sure it is not broken from a= nother's change. If you wish for this to be merged into your package, pleas= e review. > > If not, I will be re-sending this patch series out with only the package'= s I have reviews on, to get it merged so that we can update edk2-pytools fu= rther. You will always be able to add this yourself at a later date if you = wish. > > Thanks, > Joey > > > On Mon, Jun 26, 2023 at 2:35=E2=80=AFPM Joey Vagedes wrote: >> >> Adds a PrEval entry to the package's ci.yaml file which is used to >> verify if the package uses a particular library instance when that >> library instance file (INF) is updated. >> >> When a library instance file (INF) is updated, PrEval will review each >> package's DSC as described in the ci.yaml file to determine if the >> package uses said library instance. If the package does use the library >> instance, it will be built and tested to ensure the package is not >> broken from the change. >> >> Cc: Ard Biesheuvel >> Cc: Sami Mujawar >> Cc: Ray Ni >> Signed-off-by: Joey Vagedes >> --- >> StandaloneMmPkg/StandaloneMmPkg.ci.yaml | 3 +++ >> 1 file changed, 3 insertions(+) >> Fine with me Acked-by: Ard Biesheuvel >> diff --git a/StandaloneMmPkg/StandaloneMmPkg.ci.yaml b/StandaloneMmPkg/S= tandaloneMmPkg.ci.yaml >> index 4777532a7ede..f23f5f2c4db2 100644 >> --- a/StandaloneMmPkg/StandaloneMmPkg.ci.yaml >> +++ b/StandaloneMmPkg/StandaloneMmPkg.ci.yaml >> @@ -5,6 +5,9 @@ >> # SPDX-License-Identifier: BSD-2-Clause-Patent >> ## >> { >> + "PrEval": { >> + "DscPath": "StandaloneMmPkg.dsc", >> + }, >> "EccCheck": { >> ## Exception sample looks like below: >> ## "ExceptionList": [ >> -- >> 2.41.0.windows.1 >> -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#109476): https://edk2.groups.io/g/devel/message/109476 Mute This Topic: https://groups.io/mt/101856788/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-