-
Community Edition
-
Version 9.7.1 (build 62043)
-
Sonarqube running in a gitlab CICD pipeline
In my gitlab CICD pipeline I have a job that runs valgrind on some of my programs and outputs a valgrind report in xml format. Sonarqube is supposedly configured to read these valgrind reports and according to the log it should be acting properly:
11:49:39.707 INFO Sensor CXX Valgrind report import [cxx]
11:49:39.708 INFO Processing report â/builds/repo/project/valgrind_reports/ValgrindAnalysis.xmlâ
11:49:39.719 INFO Processing successful, saved new issues=1
11:49:39.719 INFO Sensor CXX Valgrind report import [cxx] (done) | time=12ms
It says 1 issue has been saved which is expected since I have forced a leak in my program to perform this test.
After all this I expected to see this issue reported in the SonarQube GUI in the issues section but it is not appearing.
Any ideas?
Thanks for your attention!