From 15712d063910f78a5248382e11329dec668717f2 Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Thu, 2 Nov 2023 10:37:16 +0100 Subject: [PATCH] Need to use gcov-13 instead of gcov --- .github/workflows/sonar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index fccf942..57d6cf9 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -34,7 +34,7 @@ jobs: mkdir gcov-reports pushd gcov-reports for f in $(find ../debug -iname '*.o'); do - gcov --preserve-paths -o $f x + gcov-13 --preserve-paths -o $f x done popd - name: Run sonar-scanner