Locating build output from Jenkins

左心房为你撑大大i 提交于 2019-12-13 04:46:42

问题


I have installed Jenkins, and am successfully building a VS 2012 solution. Which is great. However, I cannot find where the build output is located?

I assume I'm missing some parameter somewhere, such as system.outdir in TeamCity. Regardless, where are my files!


回答1:


The build output is located where your build job put them. Jenkins have a workspace for each job. By default this workspace is :

%JENKINS_HOME%\jobs\%jobname%

So I guess your build products are somewhere inside the workspace. Since your building with VC, I guess they will be there:

%JENKINS_HOME%\jobs\%jobname%\bin


来源:https://stackoverflow.com/questions/18897300/locating-build-output-from-jenkins

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!