From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web11.94567.1670988002539715049 for ; Tue, 13 Dec 2022 19:20:02 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=hBSUpPzn; spf=pass (domain: intel.com, ip: 192.55.52.115, mailfrom: gua.guo@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1670988002; x=1702524002; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=PDaUPdzif2CLzFmArLj837grIxjhq2n38xzkvJEGY9E=; b=hBSUpPznYTQgUW7NohXwi4S698PJzL/0dVxTl52s5uNVr3JyzBdIOoZa 38TvVRsKZfWCSniUorICfYDDFHQT3lXLiBYVqlyLw0zSF8tnP7sdKBNab KJxRciO6z7E51ta4EEUtjkI2BMdq9Uwd4pj9YzSpqFQdbjylVy23X5uQY QM/kY0QHx5GCjMV+xx0GeapAj8XoLysQOyuB9uSHTu+9IBgbnQiXPi8Fe u/PUgpyha0oFb5i9OCBm6R8VNLhMkOGnhYumP55HTXSij2Nx44SbF59zK IjsLwUuJt1kXP06hNBhH+Bi9c/Kghhdbhm0PTKS14OSWrLoYu6Om4kg15 w==; X-IronPort-AV: E=McAfee;i="6500,9779,10560"; a="318342357" X-IronPort-AV: E=Sophos;i="5.96,243,1665471600"; d="scan'208";a="318342357" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Dec 2022 19:20:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10560"; a="823110073" X-IronPort-AV: E=Sophos;i="5.96,243,1665471600"; d="scan'208";a="823110073" Received: from gguo-desk.gar.corp.intel.com ([10.5.215.23]) by orsmga005.jf.intel.com with ESMTP; 13 Dec 2022 19:19:53 -0800 From: "Guo, Gua" To: devel@edk2.groups.io Cc: Gua Guo , Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao Subject: [PATCH v6 3/3] .azurepipelines: Install code coverage tool Date: Wed, 14 Dec 2022 11:19:45 +0800 Message-Id: <411e740a92fe660f0e173c6c91896ff274237391.1670987653.git.gua.guo@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Gua Guo For Windows add below tool for code coverage 1. OpenCppCoverage: parsing pdb file to generate coverage data 2. pycobertura: show up html format data for coverage data For Linux add below tool for code coverage 1. lcov: parsing gcda gcno file to generate coverage data 2. lcov-cobertura: convert coverage data to cobertura format 3. pycobertura: show up html format data for coverage data Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Gua Guo --- .azurepipelines/Ubuntu-GCC5.yml | 5 ++++- .azurepipelines/Windows-VS2019.yml | 5 +++++ .azurepipelines/templates/pr-gate-build-job.yml | 2 ++ .azurepipelines/templates/pr-gate-steps.yml | 4 ++++ pip-requirements.txt | 2 ++ 5 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.azurepipelines/Ubuntu-GCC5.yml b/.azurepipelines/Ubuntu-GCC5.= yml index 1acd8d2a46..f83951eeaf 100644 --- a/.azurepipelines/Ubuntu-GCC5.yml +++ b/.azurepipelines/Ubuntu-GCC5.yml @@ -19,4 +19,7 @@ jobs: tool_chain_tag: 'GCC5'=0D vm_image: 'ubuntu-latest'=0D arch_list: "IA32,X64,ARM,AARCH64,RISCV64,LOONGARCH64"=0D -=0D + extra_install_step:=0D + - bash: sudo apt-get install -y lcov=0D + displayName: Install Code Coverage Tools=0D + condition: and(gt(variables.pkg_count, 0), succeeded())=0D diff --git a/.azurepipelines/Windows-VS2019.yml b/.azurepipelines/Windows-V= S2019.yml index e4bd4b1d22..c07e5bb434 100644 --- a/.azurepipelines/Windows-VS2019.yml +++ b/.azurepipelines/Windows-VS2019.yml @@ -18,3 +18,8 @@ jobs: tool_chain_tag: 'VS2019'=0D vm_image: 'windows-2019'=0D arch_list: "IA32,X64"=0D + extra_install_step:=0D + - powershell: choco install opencppcoverage; Write-Host "##vso[task.pr= ependpath]C:\Program Files\OpenCppCoverage"=0D + displayName: Install Code Coverage Tool=0D + condition: and(gt(variables.pkg_count, 0), succeeded())=0D +=0D diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipeli= nes/templates/pr-gate-build-job.yml index 7f88b41dc8..0ff1ce2952 100644 --- a/.azurepipelines/templates/pr-gate-build-job.yml +++ b/.azurepipelines/templates/pr-gate-build-job.yml @@ -12,6 +12,7 @@ parameters: tool_chain_tag: ''=0D vm_image: ''=0D arch_list: ''=0D + extra_install_step: []=0D =0D # Build step=0D jobs:=0D @@ -77,3 +78,4 @@ jobs: build_pkgs: $(Build.Pkgs)=0D build_targets: $(Build.Targets)=0D build_archs: ${{ parameters.arch_list }}=0D + extra_install_step: ${{ parameters.extra_install_step }}=0D diff --git a/.azurepipelines/templates/pr-gate-steps.yml b/.azurepipelines/= templates/pr-gate-steps.yml index cb431e53fc..080f60aea6 100644 --- a/.azurepipelines/templates/pr-gate-steps.yml +++ b/.azurepipelines/templates/pr-gate-steps.yml @@ -12,6 +12,7 @@ parameters: build_pkgs: ''=0D build_targets: ''=0D build_archs: ''=0D + extra_install_step: []=0D =0D steps:=0D - checkout: self=0D @@ -37,6 +38,8 @@ steps: displayName: fetch target branch=0D condition: eq(variables['Build.Reason'], 'PullRequest')=0D =0D +- ${{ parameters.extra_install_step }}=0D +=0D # trim the package list if this is a PR=0D - task: CmdLine@1=0D displayName: Check if ${{ parameters.build_pkgs }} need testing=0D @@ -125,6 +128,7 @@ steps: TestSuites.xml=0D **/BUILD_TOOLS_REPORT.html=0D **/OVERRIDELOG.TXT=0D + coverage.xml=0D flattenFolders: true=0D condition: succeededOrFailed()=0D =0D diff --git a/pip-requirements.txt b/pip-requirements.txt index be8c7a1c37..4ffcadddd8 100644 --- a/pip-requirements.txt +++ b/pip-requirements.txt @@ -16,3 +16,5 @@ edk2-pytool-library=3D=3D0.12.1 edk2-pytool-extensions~=3D0.20.0=0D edk2-basetools=3D=3D0.1.39=0D antlr4-python3-runtime=3D=3D4.7.1=0D +lcov-cobertura=3D=3D2.0.2=0D +=0D --=20 2.31.1.windows.1