每次 Cruise Control .NET (ccnet) 自动签出源代码时如何运行命令?
基本上我想运行一个脚本来检查每个新版本中是否存在某种文件类型。
Subversion 用于源代码控制。
Basically I want to run a script checking for the existence of a certain filetype at each new revision.
Subversion is used for source control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的项目配置(
ccnet.config
内)中,有一个
元素,您可以在其中定义触发集成时要执行的各种操作。 在您的情况下,您将设置一个如下所示的触发器:CruiseControl.NET 包含多种类型的任务。 该文档包含一个综合列表,解释了如何使用它们,以及有哪些选项可用。
In your project's configuration (within
ccnet.config
) there is a<tasks>
element within which you can define various actions that are taken whenever an integration is triggered. In your case, you would set up a trigger that looked something like this:There are several types of tasks included with CruiseControl.NET. The documentation includes a comprehensive list that explains how they are to be used, and what options are available.