Hi Sean, I agree the container image needs to be updated. Is this also required for local developer runs of the stuart tools? Or should this be part of the setup that developers do before running stuart? Thanks, Mike From: Guo, Gua Sent: Sunday, April 23, 2023 1:44 AM To: devel@edk2.groups.io; Kinney, Michael D ; fernald, chris Cc: Sean Brogan ; Michael Kubacki ; Oliver Steffen ; Kinney, Michael D Subject: Re: [edk2-devel] [PATCH v2 2/2] .azurepipelines: Install code coverage tool I know maybe I need to update https://github.com/tianocore/containers but add these step, i f have any guidelines for me that will be great. ________________________________ 寄件者: 「devel@edk2.groups.io >」代表「Sean >」 寄件日期: 2023年4月23日 星期日 下午2:13 收件者: devel@edk2.groups.io >; Kinney, Michael D >; Guo, Gua >; fernald, chris > 副本: Sean Brogan >; Michael Kubacki >; Oliver Steffen >; Kinney, Michael D > 主旨: Re: [edk2-devel] [PATCH v2 2/2] .azurepipelines: Install code coverage tool Sorry a little late to review this. It looks like these are container based builds. If that is the case we should handle this by updating the container. The whole point of the container is to get the requirements all included in the container. @Chris Fernald can you share details. Thanks Sean ________________________________ From: devel@edk2.groups.io > on behalf of Michael D Kinney > Sent: Saturday, April 22, 2023 8:15:56 PM To: Guo, Gua >; devel@edk2.groups.io > Cc: Sean Brogan >; Michael Kubacki >; Oliver Steffen >; Kinney, Michael D > Subject: Re: [edk2-devel] [PATCH v2 2/2] .azurepipelines: Install code coverage tool Reviewed-by: Michael D Kinney > > -----Original Message----- > From: Guo, Gua > > Sent: Saturday, April 22, 2023 6:22 PM > To: devel@edk2.groups.io > Cc: Guo, Gua >; Kinney, Michael D >; Sean Brogan >; > Michael Kubacki >; Oliver Steffen > > Subject: [PATCH v2 2/2] .azurepipelines: Install code coverage tool > > From: Gua Guo > > > Azure should install code coverage tool (lcov), it didn't > exist on Fedora and Ubuntu by default. > > Cc: Michael D Kinney > > Cc: Sean Brogan > > Cc: Michael Kubacki > > Cc: Oliver Steffen > > Signed-off-by: Gua Guo > > --- > .azurepipelines/Ubuntu-GCC5.yml | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/.azurepipelines/Ubuntu-GCC5.yml b/.azurepipelines/Ubuntu-GCC5.yml > index b9a3b851cf..d884256148 100644 > --- a/.azurepipelines/Ubuntu-GCC5.yml > +++ b/.azurepipelines/Ubuntu-GCC5.yml > @@ -24,3 +24,7 @@ jobs: > container: ${{ variables.default_linux_image }} > > arch_list: "IA32,X64,ARM,AARCH64,RISCV64,LOONGARCH64" > > usePythonVersion: '' # use Python from the container image > > + extra_install_step: > > + - bash: sudo dnf install -y lcov > > + displayName: Install Code Coverage Tools > > + condition: and(gt(variables.pkg_count, 0), succeeded()) > > -- > 2.39.2.windows.1