diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-24 06:42:36 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-24 06:42:36 +0100 |
commit | e1c19404846b2a7a2f321c662528252e4eeef35e (patch) | |
tree | 54c7f707f54cfd241242c308f8b35d93912abf6a /.github/workflows/ci.yml | |
parent | 3fa5925ad6c9ce558dd9726a02614fd6f9c031e5 (diff) | |
download | libquotient-e1c19404846b2a7a2f321c662528252e4eeef35e.tar.gz libquotient-e1c19404846b2a7a2f321c662528252e4eeef35e.zip |
Don't strip lib from names in .gcov files
That apparently confuses Sonar as it fails to match the source files.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47c92ad3..27c65b26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -218,7 +218,7 @@ jobs: run: | mkdir .coverage && pushd .coverage find $BUILD_PATH/CMakeFiles/Quotient.dir/lib -name '*.gcda' -print0 \ - | xargs -0 $COV -s $GITHUB_WORKSPACE/lib -pr + | xargs -0 $COV -s $GITHUB_WORKSPACE -pr popd $HOME/.sonar/sonar-scanner*/bin/sonar-scanner \ -Dsonar.host.url="$SONAR_SERVER_URL" \ |