每次 Cruise Control .NET (ccnet) 自动签出源代码时如何运行命令?

发布于 2024-07-19 04:26:28 字数 68 浏览 6 评论 0原文

基本上我想运行一个脚本来检查每个新版本中是否存在某种文件类型。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耳钉梦 2024-07-26 04:26:29

在您的项目配置(ccnet.config 内)中,有一个 元素,您可以在其中定义触发集成时要执行的各种操作。 在您的情况下,您将设置一个如下所示的触发器:

<triggers>
  <intervalTrigger name="continuous" 
                   seconds="60"
                   buildCondition="IfModificationExists" />
</triggers>

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:

<triggers>
  <intervalTrigger name="continuous" 
                   seconds="60"
                   buildCondition="IfModificationExists" />
</triggers>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文