Failed while checking out into Working Folder: pipelines\MyPipeline\tfs\AssemblyInfo.cs, Project Path: $/TeamProjectName/AssemblyInfo.cs, Workspace: bb18a58c6abfa36db84643de09258c86feaa48bc711174334eaea61594b9623f, Username: BuildUser, Domain: mydomain, Root Cause: java.io.FileNotFoundException: E:\GoCD\Go Agent\pipelines\MyPipeline\tfs\AssemblyInfo.cs\$tf\5\377de3f5-a6f8-41ed-970a-9b0bbf2c1a50.gz (The system cannot find the path specified)
Hi Ketan,
I created a simple pipeline that runs as a test. Here is the full XML for that pipeline:
<pipeline name="Test-FileCheckout">
<materials>
<tfs url="http://tfs.mydomain.com:8080/tfs/DefaultCollection" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/AssemblyInfo.cs" dest="tfs/AssemblyInfo.cs" materialName="AssemblyInfo" />
</materials>
<stage name="defaultStage">
<jobs>
<job name="defaultJob" />
</jobs>
</stage>
</pipeline>
This pipeline runs successfully under version 15.2 but file checkout fails under version 18.10.
Please let me know if there is any additional information I can provide.
Regards,
Jason
--
You received this message because you are subscribed to a topic in the Google Groups "go-cd" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/go-cd/00PZ6loeunk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to go-cd+un...@googlegroups.com.
Here is a slightly modified version of the materials element for one of our live pipelines that demonstrates why, for us, including a file name in the dest attribute is sometimes necessary to allow proper relative file paths:
<materials>
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/Products/MyGreatProduct/Trunk" dest="tfs/Products/MyGreatProduct/Trunk" materialName="tfs" />
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/AssemblyInfo.cs" dest="tfs/AssemblyInfo.cs" materialName="AssemblyInfo" />
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/CommonServices" dest="tfs/CommonServices" materialName="CommonServices" />
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/ThirdParty" dest="tfs/ThirdParty" materialName="ThirdParty" />
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/packages" dest="tfs/packages" materialName="packages" />
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/Products/MyGreatProduct/Documents/Spec" dest="tfs/Products/MyGreatProduct/Documents/Spec" materialName="Spec" />
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/Internal/BuildTargets" dest="tfs/Internal/BuildTargets" materialName="BuildTargets" />
<tfs url="http://tfs.mydomain.com:8080/tfs" username="myServiceAccount" domain="mydomain" encryptedPassword="REDACTED" projectPath="$/MyTeamProject/Internal/BuildScripts" dest="BuildScripts" materialName="BuildScripts" />
</materials>
Again, any insight on this is appreciated.
Thanks,
Jason
To unsubscribe from this group and stop receiving emails from it, send an email to go-cd+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "go-cd" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/go-cd/00PZ6loeunk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to go-cd+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "go-cd" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/go-cd/00PZ6loeunk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to go-cd+unsubscribe@googlegroups.com.