gpt4 book ai didi

c# - SonarQube - C# 代码未显示在仪表板上

转载 作者:行者123 更新时间:2023-11-30 18:15:04 24 4
gpt4 key购买 nike

我在使用 SonarQube 6.7 时遇到问题,它没有显示任何 C# 代码问题或错误,在分析过程中我可以看到正在分析 C# 并且构建成功但是当我检查 SonarQube 仪表板时它只显示 Typescript和 XML。

我正在使用 Jenkins 使用 Mono 构建项目,因为我们所有的构建都是在 Ubuntu 16.04 上完成的。

设置如下:

Ubuntu 16.04 上的 Jenkins 2.89.2

Ubuntu 16.04(独立服务器)上的 SonarQube 版本 6.7(内部版本 33306)

Sonar C# 6.8.1

适用于 MSBuild 4.0.1 的 SonarQube 扫描器

Mono 5.10.0 稳定

在 Jenkins 中使用管道,我正在执行以下操作:

node {
sh 'mono ~/tools/hudson.plugins.sonar.MsBuildSQRunnerInstallation/MSBuild/SonarQube.Scanner.MSBuild.exe begin /key:12345678FAKEKEY9l02998745'
sh 'dotnet restore WSP1.sln'
sh 'dotnet msbuild WSP1.sln'
sh 'mono ~/tools/hudson.plugins.sonar.MsBuildSQRunnerInstallation/MSBuild/SonarQube.Scanner.MSBuild.exe end' } }

上面的管道脚本没有任何问题。

当我运行这个管道时,我可以看到正在分析 C# 代码,这只是正在分析的代码片段:

Services/Project1/Services/Project1EventsShould.cs(130,21): warning S1186: Add a nested comment explaining why this method is empty, throw a 'NotSupportedException' or complete the implementation. [/var/lib/jenkins/workspace/CSharpAnalysis/WSP1/test/Unit/Unit.csproj]
Services/Project1/Services/Project1EventsShould.cs(137,21): warning S1186: Add a nested comment explaining why this method is empty, throw a 'NotSupportedException' or complete the implementation. [/var/lib/jenkins/workspace/CSharpAnalysis/WSP1/test/Unit/Unit.csproj]
Services/Project1/Models/ZenEventShould.cs(24,17): warning S1481: Remove this unused 'date' local variable. [/var/lib/jenkins/workspace/CSharpAnalysis/WSP1/test/Unit/Unit.csproj]
Services/Project1/Models/CollaborationUserShould.cs(16,17): warning S1481: Remove this unused 'sut' local variable. [/var/lib/jenkins/workspace/CSharpAnalysis/WSP1/test/Unit/Unit.csproj]

最后我获得了成功,一切看起来都不错,但是当我检查 SonarQube 时,我可以看到正在分析上传的代码以在 SonarQube 中显示,这通常需要一分钟左右,但是完成后我可以看到仅显示 TypeScript 和 XML。

在输出中,我收到了一些警告、信息和错误,但看起来没有任何危险,在输出的末尾,我收到了成功消息

INFO: 68 files had no CPD blocks
INFO: Calculating CPD for 281 files
INFO: CPD calculation finished
INFO: Analysis report generated in 1771ms, dir size=5 MB
INFO: Analysis reports compressed in 3908ms, zip size=2 MB
INFO: Analysis report uploaded in 5866ms
INFO: ANALYSIS SUCCESSFUL, you can browse http://sonar.serverdomain.com:9000/dashboard/index/12345678FAKEKEY9l02998745
INFO: Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
INFO: More about the report processing at http://sonar.serverdomain.com:9000/api/ce/task?id=AKsdHc7FAKEIDVOeCzBYv
INFO: Task total time: 1:32.107 s
INFO: ------------------------------------------------------------------------
INFO: EXECUTION SUCCESS
INFO: ------------------------------------------------------------------------
INFO: Total time: 1:42.735s
INFO: Final Memory: 54M/397M
INFO: ------------------------------------------------------------------------
The SonarQube Scanner has finished
14:59:57.577 Creating a summary markdown file...
14:59:57.59 Analysis results: http://sonar.serverdomain.com:9000/dashboard/index/12345678FAKEKEY9l02998745
14:59:57.591 Post-processing succeeded.
Finished: SUCCESS

我手边有完整的输出,我只需要对其进行清理以删除任何可能敏感的内容,如果您想看一下,请告诉我,我会发布这个。

我是 SonarQube 的新手,所以我遇到的问题可能很愚蠢,但我一直在努力解决这个问题。

编辑 :我再次挖掘输出并注意到以下 2 个警告:

INFO: Quality profile for cs: Sonar way
INFO: Quality profile for ts: Sonar way
INFO: Quality profile for xml: Sonar way
INFO: Sensor C# Properties [csharp]
WARNING: WARN: Property missing: 'sonar.cs.analyzer.projectOutPaths'. No protobuf files will be loaded for this project.
WARNING: WARN: No roslyn issues report not found for this project.
INFO: Sensor C# Properties [csharp] (done) | time=1ms

最佳答案

我刚刚在 Sonarqube 6.7.4(内部版本 38452)上遇到了同样的问题。

分两步解决:

  1. 将内置的 SonarC# 插件更新到版本 7.2(build 5463)(卸载-重启-安装-重启)并重新扫描后,出现了代码问题(漏洞、代码异味等)。
  2. 介绍套餐coverlet.msbuild进入测试项目以生成覆盖率数据,配置项目 - 管理 - C# - OpenCover 单元测试报告路径 以使用 path/to/coverage.opencover.xml。重新扫描后,测试覆盖率数据显示出来。

以上配置后执行的命令如下:

    dotnet path/to/SonarScanner.MSBuild.dll begin /k:"project-key"
dotnet build
dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
dotnet path/to/SonarScanner.MSBuild.dll end

关于c# - SonarQube - C# 代码未显示在仪表板上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49033329/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com