Must-share information (formatted with Markdown):
- which versions are you using (SonarQube, Scanner, Plugin, and any relevant extension)
Sonarqube: 8.0.0.29455
Fastlane: 2.134.0
- what are you trying to achieve
We currently have a Developer edition instance of sonarqube running on the newly released 8.0-developer-beta docker image. We use fastlane to compile a swift project using the following command;
xcodebuild(
xcargs: "-project 'Component Interface.xcodeproj'"
)
and then call the sonar-scanner via fastlane;
sonar(
project_configuration_path: "sonar-project.properties",
sources_path: File.expand_path("../Component Interface")
)
This previously worked on Sonar 7.8, however since upgrading to 8.0 we are now getting the following error;
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 SonarCFamily 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
- what have you tried so far to achieve this
I have confirmed that the build-wrapper-dump.json is not empty, the path is correct, redownloaded the wrapper from our SonarQube instance, and cleared the build-cache for Xcode before running another build but none of these resolved the issue.
The fact that this previously worked has me confused as we have not changed anything on our side as to how we are building the project.