尝试在VSTS的YAML构建模板中添加SonarQube - SonarAnalysis任务作为构建任务

问题描述 投票:0回答:2

Phase LibraryBuildGated:步进输入SonarQube引用无法找到的端点17xxxxc3-4xx0-4xx4-9xx2-617fxxxxxxxx。服务端点不存在或未被授权使用

谢谢 - 编辑问题

sonarqube sonarqube-scan sonar-runner azure-pipelines-build-task
2个回答
0
投票

先决条件: *我在Linux WebApp上的Azure中安装了SonarQube服务器 *我已安装以下Azure DevOps扩展: https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarqube *我已经在Azure中的SonarQube服务器上设置了SonarQube服务连接(“SonarQube服务连接”)。

在Yaml准备SonarQube分析:

- task: SonarSource.sonarqube.15B84CA1-B62F-4A2A-A403-89B77A063157.SonarQubePrepare@4
  displayName: 'Prepare analysis on SonarQube'
  inputs:
    SonarQube: 'SonarQube Service Connection'
    projectKey: ProjectKey
    projectName: ProjectName

在Yaml中运行代码分析:

- task: SonarSource.sonarqube.6D01813A-9589-4B15-8491-8164AEB38055.SonarQubeAnalyze@4
  displayName: 'Run Code Analysis'

在Yaml中发布质量门结果:

- task: SonarSource.sonarqube.291ed61f-1ee4-45d3-b1b0-bf822d9095ef.SonarQubePublish@4
  displayName: 'Publish Quality Gate Result'

0
投票

解决方案:涵盖大多数情况的解决方法是,导航到Web中的构建定义,将默认分支切换到包含服务端点引用的分支,保存,恢复为所需设置,再次保存。保存定义的行为加载文件(从默认分支)并授权发现的资源。 - 由MSFT建议

© www.soinside.com 2019 - 2024. All rights reserved.