0

我在这里有一个难题。

我正在使用:CruiseControl.NET 服务器 1.6.7981.1

我们搬迁了办公室,同时我们的 SVN 存储库从通用堆栈转移到使用 LDAP 的客户端系统。

自从更改以来,我一直无法让 CruiseControl 与 SVN 一起工作。

这是我的配置中的内容:

<project ...
    <webURL>...
    <workingDirectory>...
    ...
    <sourcecontrol type="svn-change-detection">
      <svn-exe>C:\Program Files\Subversion\bin\svn.exe</svn-exe>
      <code-root-url>http://blah.blah.blah/svn/project/branches/product-lines/4.3.0</code-root-url>
      <tag-root-url>http://blah.blah.blah/svn/project/tag/4.3.0</tag-root-url>
      <build-interval>86400</build-interval>
      <username>LDAP_DOMAIN\USER</username>
      <password>AwesomePassword</password>
    </sourcecontrol>

我得到的错误是:

[CCNet Server:ERROR] Exception: Unused node detected: <username>LDAP_DOMAIN\USER</username>

从我看到的例子中,这应该是完全合法的......或者我错过了什么?

任何帮助都会动摇。

4

1 回答 1

2

你的配置全错了。您应该查看 SVN 块的文档。尝试这个。

<sourcecontrol type="svn">
  <executable>C:\Program Files\Subversion\bin\svn.exe</executable>
  <trunkUrl>http://blah.blah.blah/svn/project/branches/product-lines/4.3.0</trunkUrl>          
  <username>LDAP_DOMAIN\USER</username>
  <password>AwesomePassword</password>
</sourcecontrol>

build-interval:这是您的项目配置的一部分,而不是源代码控制。

于 2012-04-28T00:29:38.397 回答