我想有声纳扫描仪运行在我的项目时,它建立在Jenkins。
就像这样
大多数教程似乎只是从Java的Angular 来解决这个过程,所以我想知道如果有的话,如何才能做到这一点。
我正在我的项目中做一些Jenkinsfile的工作:
stage('SonarQube') {
environment {
scannerHome = tool 'SonarQubeScanner'
}
steps {
withSonarQubeEnv('SonarQubeScanner') {
sh "${scannerHome}/bin/sonar-scanner"
}
}
}
我使用以下链接在SonarQube中获取该项目:https://nickkorbel.com/2020/02/05/configuring-sonar-with-a-create-react-app-in-typescript/
在Jenkins构建过程中尝试运行扫描时,我收到了几个不同的错误:
错误1
Could not find executable in "/opt/app-root/src/.sonar/native-sonar-scanner".
Proceed with download of the platform binaries for SonarScanner...
Creating /opt/app-root/src/.sonar/native-sonar-scanner
Downloading from https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.4.0.2170-linux.zip
(executable will be saved in cache folder: /opt/app-root/src/.sonar/native-sonar-scanner)
ERROR: impossible to download and extract binary: connect ETIMEDOUT
错误2
ERROR: Failed to download https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.4.0.2170-linux.zip from agent; will retry from master
SonarQube installation defined in this job (sonarqube) does not match any configured installation. Number of installations that can be configured: 1.
2条答案
按热度按时间ljsrvy3e1#
错误2是关于缺少与sonarqube服务器的集成。
声纳管的完整安装:
1.安装SonarQube服务器
1.为Jenkins安装SonarQube扫描仪插件。
1.配置您的SonarQube服务器:
withSonarQubeEnv('SonarQubeScanner')
-“SonarQubeScanner”表示步骤3中的Sonarqube服务器的名称。在管道中,您应该为声纳扫描仪工具传递参数,例如:
假设在修复错误2之后,错误1也将得到修复。请查看官方文档here
f87krz0w2#
在我的例子中,任何初始化
scannerHome
var的方法都不成功。所以我用我的方法: