2

我有一个用作 Jenkins 管道代理的 dotnet 映像。现在我想在图像中包含声纳扫描仪,以便我可以运行分析并查看覆盖范围是否良好。如果覆盖范围不好,那么构建应该会失败。如何在我的图像中包含声纳扫描仪。

我尝试在 dotnet 图像的 Dockerfile 中包含 Skilldlabs/sonar-scanner。但是当我运行容器时,它直接执行了声纳立方体命令,但由于使用了默认的 sonarqube 地址而失败。

下面是我当前的 Dockerfile

FROM microsoft/dotnet:2.1-sdk
FROM skilldlabs/sonar-scanner:3.3

COPY some-ca.crt /usr/local/share/ca-certificates
COPY NuGet.Config /build/.nuget/NuGet/

VOLUME [ "/build/sources" ]

WORKDIR /build/sources

当我跑的时候:

docker run --name sonar -it sonar

信息:扫描仪配置文件:/root/sonar-scanner-3.3.0.1492-linux/conf/sonar-scanner.properties

信息:项目根配置文件:无

信息:SonarQube 扫描仪 3.3.0.1492

信息:Java 1.8.0_191 甲骨文公司(64 位)

信息:Linux 4.9.125-linuxkit amd64

信息:用户缓存:/root/.sonar/cache

错误:无法访问 SonarQube 服务器 [ http://sonarqube:9000]

信息:------------------------------------------------ ----------------------

信息:执行失败

信息:------------------------------------------------ ----------------------

信息:总时间:5.433s

信息:最终内存:3M/39M

信息:------------------------------------------------ ----------------------

错误:SonarQube 扫描仪执行期间出错

错误:无法执行 SonarQube

错误:原因:无法从服务器获取引导索引

错误:原因:sonarqube:再试一次

错误:

错误:使用 -X 开关重新运行 SonarQube Scanner 以启用完整的调试日志记录。

如何告诉容器为声纳扫描仪提供配置?

4

1 回答 1

1

Instead of using the sonar scanner image into my image, I have installed dotnet-sonarscanner using the below command,

dotnet tool install -g dotnet-sonarscanner

I had to install a "coverlet" package to my unit test project by adding the below to my .csproj file of the unit test project.

<PackageReference Include="coverlet.msbuild" Version="2.6.1">
  <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  <PrivateAssets>all</PrivateAssets>
</PackageReference>

Now, whenever I want to send sonarqube my coverage results I run below command to generate the coverage file.

dotnet test ./UnitTests/UnitTests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=opencover

The above command will generate the coverage.opencover.xml file in the project folder.

Now use below commands to send the coverage

dotnet sonarscanner begin /k:"yourprojectkey" /d:sonar.host.url=https://yoursonarqubedomain.com /d:sonar.cs.opencover.reportsPaths="./UnitTests/coverage.opencover.xml" /d:sonar.coverage.exclusions="**Tests*.cs"
dotnet build
dotnet sonarscanner end

you can set the sonarscanner properties like report location and the URL etc., using /d:

于 2019-06-18T15:31:52.623 回答