在一个 VSTS 构建定义中扫描多个项目时,Sonarqube“无法创建空目录”

Tom*_*ang 5 sonarqube azure-pipelines

我需要在每晚构建定义中为多个项目运行声纳。我发现的问题是 - 在为第一个项目成功运行 sonarqube 后,.sonarqube会创建一个文件夹,并且一个进程似乎一直在使用该文件夹。因此,该文件夹不能被后续项目删除/使用。有没有办法解决这个问题?

在此处输入图片说明

第二个项目的准备步骤错误:

2017-06-08T22:43:53.0910761Z ##[error]Failed to create an empty directory 'C:\VSTS-Agent-2.104.0\_work\3\.sonarqube'. Please check that there are no open or read-only files in the directory and that you have the necessary read/write permissions.
2017-06-08T22:43:53.0910761Z ##[error]Detailed error message: The process cannot access the file 'newSummaryReport.md' because it is being used by another process.
2017-06-08T22:43:53.0910761Z ##[error]Pre-processing failed. Exit code: 1
2017-06-08T22:43:53.0910761Z ##[error]System.Exception: Unexpected exit code received from batch file: 1
2017-06-08T22:43:53.0910761Z    at Microsoft.TeamFoundation.DistributedTask.Task.Internal.InvokeBatchScriptCmdlet.ProcessRecord()
2017-06-08T22:43:53.0910761Z    at System.Management.Automation.CommandProcessor.ProcessRecord()
2017-06-08T22:43:53.1066882Z ##[error]PowerShell script completed with 1 errors.
Run Code Online (Sandbox Code Playgroud)

小智 4

我绕过这个问题:

  • 通过在任务之前的管道中添加删除文件任务"Prepare analysis on SonarQube"
  • 删除".sonarqube\out\"文件夹。源文件夹"$(Agent.BuildDirectory)\.sonarqube\out\"
  • 请务必提前确认"Remove files starting with a dot"