开发者

Cruise Control: Web-based Source Control Configuration

开发者 https://www.devze.com 2022-12-19 16:46 出处:网络
Currently I have this sourcecontrol config block.     <sourcecontrol type="svn">

Currently I have this sourcecontrol config block.



    <sourcecontrol type="svn">

      <trunkUrl>https://SampleSVNOnlineRepository.com/12maksdde12d123ede12</trunkUrl>

 

      <workingDirectory>c:\MyProject</workingDirectory>

 

      <username>admin</username>

      <password&开发者_JAVA技巧gt;mypassword</password>

 

    </sourcecontrol>

Cruise Control Exception:

Source control failure : Unable to execute file [c:\MyProject\svn]. The file may not exist or may not be executable.]

What seems to be the problem here?


It means that CruiseControl.NET cannot find the svn executable. You'll have to specify it with the executable element, e.g:

<sourcecontrol type="svn">
...
    <executable >absolute\path\tp\subversion\executable</element>


Did you checkout the project first by hand in that location? As I understood when I played with phpUnderControl, which uses CruiseControl, you do the first checkout by hand.

0

精彩评论

暂无评论...
验证码 换一张
取 消