Reviewed-by: Michael D Kinney <[email protected]>
> -----Original Message----- > From: Guo, Gua <[email protected]> > Sent: Thursday, January 5, 2023 4:44 PM > To: [email protected] > Cc: Guo, Gua <[email protected]>; Sean Brogan <[email protected]>; > Michael Kubacki <[email protected]>; Kinney, > Michael D <[email protected]>; Gao, Liming <[email protected]> > Subject: [PATCH] .azurepipelines: Skip CodeCoverage if coverage.xml not found > > From: Gua Guo <[email protected]> > > Skip CodeCoverage if coverage.xml not found > > Cc: Sean Brogan <[email protected]> > Cc: Michael Kubacki <[email protected]> > Cc: Michael D Kinney <[email protected]> > Cc: Liming Gao <[email protected]> > Signed-off-by: Gua Guo <[email protected]> > --- > .azurepipelines/templates/pr-gate-build-job.yml | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/.azurepipelines/templates/pr-gate-build-job.yml > b/.azurepipelines/templates/pr-gate-build-job.yml > index 840852b606..fff61a3193 100644 > --- a/.azurepipelines/templates/pr-gate-build-job.yml > +++ b/.azurepipelines/templates/pr-gate-build-job.yml > @@ -100,16 +100,24 @@ jobs: > buildType: 'current' > > targetPath: '$(Build.ArtifactStagingDirectory)' > > > > + - powershell: Write-Host "##vso[task.setvariable > variable=is_code_coverage]0" > > + displayName: Give default value for whether CodeCoverage or not > > + > > + - powershell: if (Test-Path -Path > $(Build.ArtifactStagingDirectory)/**/coverage.xml) {Write-Host > "##vso[task.setvariable > variable=is_code_coverage]1"} > > + displayName: Check coverage.xml exist or not > > + > > - task: CmdLine@2 > > displayName: Create code coverage report > > inputs: > > script: | > > dotnet tool install -g dotnet-reportgenerator-globaltool > > reportgenerator > -reports:$(Build.ArtifactStagingDirectory)/**/coverage.xml - > targetdir:$(Build.ArtifactStagingDirectory)/Coverage -reporttypes:Cobertura > -filefilters:-*Build*;-*UnitTest*;-*Mock*;-*usr* > > + condition: eq(variables.is_code_coverage, 1) > > > > - task: PublishCodeCoverageResults@1 > > displayName: 'Publish code coverage' > > inputs: > > codeCoverageTool: Cobertura > > summaryFileLocation: > '$(Build.ArtifactStagingDirectory)/Coverage/Cobertura.xml' > > + condition: eq(variables.is_code_coverage, 1) > > > > -- > 2.31.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#98045): https://edk2.groups.io/g/devel/message/98045 Mute This Topic: https://groups.io/mt/96085111/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
