4

默认情况下,TFS 构建会在 Visual Studio 构建定义中创建“索引源和发布符号”步骤。当步骤的属性“发布符号的路径”为空时,一切正常。但是在设置本地目录的路径时,该步骤会产生以下错误:

2015-09-25T11:00:09.7991491Z Executing the powershell script: C:\NewAgent\tasks\PublishSymbols\1.0.4\PublishSymbols.ps1
2015-09-25T11:00:10.0022755Z Find-Files -SearchPattern **\bin\**\*.pdb -RootFolder C:\NewAgent\_work\990dcb3f\Projects
2015-09-25T11:00:10.0491548Z Found 15 files to index...
2015-09-25T11:00:10.0491548Z Invoke-IndexSources -RepositoryEndpoint <repositoryEndpoint> -SourceFolder C:\NewAgent\_work\990dcb3f\Projects -PdbFiles <pdbFiles>
2015-09-25T11:00:10.6272794Z Invoke-PublishSymbols -PdbFiles <pdbFiles> -Share C:\DebugSymbols -Product EntityMapper -Version 20150925.14 -MaximumWaitTime 7200000 -MaximumSemaphoreAge 1440 -ArtifactName 
2015-09-25T11:00:10.7348541Z ##[error]Can't infer artifact type from artifact location C:\DebugSymbols.
2015-09-25T11:00:10.7504779Z  
2015-09-25T11:00:10.7504779Z Start: AssociateArtifact
2015-09-25T11:00:10.7504779Z ##[error]Artifact Type is required.
2015-09-25T11:00:10.7504779Z End: AssociateArtifact

pdb 文件被发布到指定的目录,所以我真的不明白是什么导致了错误(然后导致整个构建作业失败)。

4

2 回答 2

0

当步骤的属性“发布符号的路径”为空时,一切正常。

是的,因为如果未设置符号路径,则脚本仅索引源,不发布符号。

但是在设置本地目录的路径时,该步骤会产生错误

您需要准备符号存储。在您的情况下,设置文件夹共享和权限。

于 2016-01-08T11:32:49.243 回答
0

在我的情况下,将“发布符号的路径”从

//我的服务器/符号

\\我的服务器\符号

解决了这个问题。不知道为什么这会发生在我身上,但好吧...... :)

于 2016-03-15T10:17:14.250 回答