我有许多具有Objectivec和Swift代码的iOS项目。我正在使用Sonarqube 7.4服务器,并使用Fastlane进行构建,测试,扫描和部署。一切工作正常1年,突然,声纳 - 扫描仪开始失败,以下错误:
INFO: Sensor CFamily [cpp]
ERROR: The only way to get an accurate analysis of C/C++/Objective-C files is by using the SonarSource build-wrapper
and setting the property "sonar.cfamily.build-wrapper-output", but it was not specified.
If you don't want to analyze C/C++/Objective-C files, then prevent them from being analyzed by setting the following properties:
sonar.c.file.suffixes=-
sonar.cpp.file.suffixes=-
sonar.objc.file.suffixes=-
我尝试在我的一个项目上进行构建 - 构建,并开始给我的汇编错误。Fastlane Gym虽然工作正常。因此,是否没有弄清楚所有这些,而是为此插件吗?还是我可以忽略此构建版本的任何方式?(正常运行正常,突然停止了,所以不确定是否真的是"一个问题")
解决方案非常有趣,因为Sonarqube扫描仪的功能被损坏(或带有错误)。我创建了一个新项目,并使用了 build-wrapper 来构建我的项目。它在目录中创建了2个文件
- bw_output/
- build-wrapper-dump.json
- build-wrapper.log
build-wrapper-dump.json的内容
{"version":0,
"captures":[]}
我将此文件用于其他项目,sonar-scanner
适用于所有项目。因此,上述问题的解决方案似乎只需提交这两个文件,然后更新sonar-project.properties
如下:
sonar.cfamily.build-wrapper-output=bw_output
#sonar.cfamily.build-wrapper-output.bypass=true
第二行是评论,您也可以跳过。