TortoiseProc CruiseControl.NET:无法执行文件问题
我是 CruiseControl 和自动化构建的新手。我的问题是 ccnet 服务总是提示我“无法执行文件 TortoiseProc.exe /command ...”。我的配置文件看起来像这样
TortoiseProc.exe /command:update /path:C:\Work\global.ad.lib.objectmanagement /closeonend:1
这个命令(tortoiseProc....)在 CMD 窗口中运行良好。 Ccnet 服务使用管理员帐户执行。 “C:\Program Files\TortoiseSVN\bin”位于环境变量中,可以从任何地方执行。如果我从仪表板强制构建,它会完美构建。我感觉这只是一件简单的愚蠢的事情...... 塔克斯
I am new to CruiseControl and automated build. My problem is that the ccnet service always promt me "unable to execute file TortoiseProc.exe /command ...". My config file looks like this
TortoiseProc.exe /command:update /path:C:\Work\global.ad.lib.objectmanagement /closeonend:1
This command(tortoiseProc....) works well in a CMD window. The Ccnet service is execute with an Admin account. "C:\Program Files\TortoiseSVN\bin" is in the environnement variables and can be executed from anywhere. If i force a build from the Dashboard, it builds perfectly. I have the feeling this is just a simple stupid thing...
Tks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在“buildArgs”元素内单独指定 TortoiseProc.exe 参数与可执行文件名称。以下是适合您情况的 ccnet.config 片段:
此外,您还可以使用命令创建 cmd 文件并使用不带参数的 exec,如果这对您来说更容易的话。
You will need to specify TortoiseProc.exe parameters separately from the executable name, inside "buildArgs" element. Here is the right ccnet.config fragment for your situation:
Also you can create cmd-file with your commands and use exec without parameters, if that would be easier for you.