Skip to content

Commit

Permalink
Improve merge support
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-webb committed Jan 31, 2025
1 parent 9603c6b commit f5c9290
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,15 @@ jobs:
cd main
BaseDir=$(pwd)
cd build/src/main/cpp
set -v
gcovr --version
gcovr --sonarqube -r "$BaseDir/main" --verbose --gcov-ignore-parse-errors --exclude "$BaseDir/main/src/test/" --exclude "$BaseDir/main/src/examples/" --exclude "$BaseDir/main/src/fuzzers/" -o "$BaseDir/build/coverage.xml"
gcovr --sonarqube \
-r "$BaseDir" \
--exclude "$BaseDir/main/src/test/" \
--exclude "$BaseDir/main/src/examples/" \
--exclude "$BaseDir/main/src/fuzzers/" \
--verbose --gcov-ignore-parse-errors \
-o "$BaseDir/build/coverage.xml"
- name: SonarQube Scan
uses: SonarSource/[email protected]
Expand Down

0 comments on commit f5c9290

Please sign in to comment.