From 0e06f60a623a1e40f53758022b3c0541310bd4e4 Mon Sep 17 00:00:00 2001 From: Julio Estrada Date: Tue, 3 Feb 2026 21:12:47 -0500 Subject: [PATCH] Add --html-title to gcovr for clearer report identification Sets the HTML report title to the repository name, making it easier to identify coverage reports when viewing multiple libraries. --- scripts/lcov-jenkins-gcc-13.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lcov-jenkins-gcc-13.sh b/scripts/lcov-jenkins-gcc-13.sh index c11df57..371ac10 100755 --- a/scripts/lcov-jenkins-gcc-13.sh +++ b/scripts/lcov-jenkins-gcc-13.sh @@ -159,7 +159,7 @@ else fi outputlocation="$BOOST_CI_SRC_FOLDER/gcovr" -gcovr --merge-mode-functions separate -p --html-nested --html-template-dir=ci-automation/gcovr-templates/html --merge-lines --exclude-unreachable-branches --exclude-throw-branches --exclude '.*/test/.*' --exclude '.*/extra/.*' --exclude '.*/example/.*' --filter "$GCOVRFILTER" --html --output "${outputlocation}/index.html" +gcovr --merge-mode-functions separate -p --html-nested --html-template-dir=ci-automation/gcovr-templates/html --html-title "$REPONAME" --merge-lines --exclude-unreachable-branches --exclude-throw-branches --exclude '.*/test/.*' --exclude '.*/extra/.*' --exclude '.*/example/.*' --filter "$GCOVRFILTER" --html --output "${outputlocation}/index.html" # gcovr --merge-mode-functions separate -p --html-nested --exclude-unreachable-branches --exclude-throw-branches --exclude '.*/test/.*' --exclude '.*/extra/.*' --exclude '.*/example/.*' --filter "$GCOVRFILTER" --html --output "${outputlocation}/index.html" ls -al "${outputlocation}"