From e0186e39a45a2987cbf76bfafa4b95596009da02 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Thu, 10 Dec 2020 15:20:21 +0100 Subject: some more code-coverage extraction test for GitLab CI --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9ec05060..f6db61b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,7 @@ variables: GIT_SUBMODULE_STRATEGY: recursive GIT_DEPTH: "2" SECURE_LOG_LEVEL: "debug" + JACOCO_CSV_LOCATION: 'build_reporting/target/site/jacoco-aggregate-ut/jacoco.csv' include: - template: Dependency-Scanning.gitlab-ci.yml @@ -39,6 +40,7 @@ assemble: junit: "**/target/surefire-reports/TEST-*.xml" paths: - build_reporting/target/site/jacoco-aggregate-ut/jacoco.xml + - build_reporting/target/site/jacoco-aggregate-ut/jacoco.csv coverage: stage: visualize @@ -49,6 +51,7 @@ coverage: - 'python /opt/cover2cover.py build_reporting/target/site/jacoco-aggregate-ut/jacoco.xml eaaf_core_api/src/main/java eaaf_core_utils/src/main/java eaaf_core/src/main/java eaaf_modules/eaaf_module_auth_sl20/src/main/java eaaf_modules/eaaf_module_moa-sig/src/main/java eaaf_modules/eaaf_module_pvp2_core/src/main/java eaaf_modules/eaaf_module_pvp2_idp/src/main/java eaaf_modules/eaaf_module_pvp2_sp/src/main/java > target/site/cobertura.xml' # read the tag and prepend the path to every filename attribute #- 'python /opt/source2filename.py target/site/cobertura.xml' + - awk -F"," '{ instructions += $4 + $5; covered += $5 } END { print covered, "/", instructions, " instructions covered"; print 100*covered/instructions, "% covered" }' $JACOCO_CSV_LOCATION needs: - job: assemble dependencies: -- cgit v1.2.3