Phase LibraryBuildGated:步进输入SonarQube引用无法找到的端点17xxxxc3-4xx0-4xx4-9xx2-617fxxxxxxxx。服务端点不存在或未被授权使用
谢谢 - 编辑问题
先决条件: *我在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'
解决方案:涵盖大多数情况的解决方法是,导航到Web中的构建定义,将默认分支切换到包含服务端点引用的分支,保存,恢复为所需设置,再次保存。保存定义的行为加载文件(从默认分支)并授权发现的资源。 - 由MSFT建议