Hi Sonar Team,
-
which versions are you using (SonarQube, Scanner, Plugin, and any relevant extension):
SonarQube v9.9.2 (build 77730) - Developer Edition
BuildWrapper v6.41.1 (for C++ analysis)
dotnet-sonarscanner v6.0.0 -
how is SonarQube deployed: zip, Docker, Helm :
Docker -
what are you trying to achieve :
A C++ / C# analysis -
what have you tried so far to achieve this :
The project is mainly composed of C++ and C# code.
We first have some CMake code that generates all of our project files and solution file. Then we have a .NET Core build that builds the project from the solution file previously generated.
The whole process is made in a Jenkins pipeline, running in a windows 10 containers on a windows 10 host.
From what I understood from the documentation, we implemented the sonar scanners as follow :
1 – As we have some C++, we downloaded the build-wrapper tool to encapsulate our build command.
2 – As we also want C# analysis, we used the .NET Core sonarscanner.
This looks like this:
Step 1 : download build wrapper from our sonar server : http://<our_sonar_url>/static/cpp/build-wrapper-win-x86.zip
Step 2 : generate project and solution files with our CMake script
Step 3 : use of sonarscanner begin command : dotnet sonarscanner begin /k:<project_key> -d:sonar.login=<login_token> -d:sonar.host.url=<sonar_url> -d:sonar.cfamily.build-wrapper-output=bw-output"
Step 4 : build the solution with the wrapper : build-wrapper-win-x86-64.exe --out-dir bw-output <our_build_command>
Step 5 : use of sonarscanner end command : dotnet sonarscanner end -d:sonar.login=<login_token>
We do not use sonar-project.properties, nor did we setup the SonarQube.Analysis.xml as information are given in the sonarscanner begin command.
As a result, the solution builds correctly (at least we found nothing strange in build logs) but when the end command runs, we can see these line of log:
java.lang.IllegalStateException: The “build-wrapper-dump.json” file was found but 0 C/C++/Objective-C files were analyzed. Please make sure that:
- you are using the latest version of the build-wrapper and the CFamily analyzer
- you are correctly invoking the scanner with correct configuration
- your compiler is supported
- you are wrapping your build correctly
- you are wrapping a full/clean build
- you are providing the path to the correct build-wrapper output directory
- you are building and analyzing the same source checkout, absolute paths must be identical in build and analysis steps
I struggle to find to blocking point here. Can someone help?