Question

I've installed CCNet and now I'm trying to set up a link to our repository. When I visit the CCNet dashboard website the project shows up ok, but when I click the Force button I receive this error in the messages column:

Failing Tasks : FilteredSourceControl: CheckForModifications

If I log into the server as the account which I've specified CCNet should use to connect to the repository, and do an Update on the project by hand (i.e. using SVN.exe or TortoiseSVN) the update works fine. My sourcecontrol section of the CCNet.config file is below.

<sourcecontrol type="filtered">
  <sourceControlProvider type="svn" autoGetSource="true">
    <executable>E:\SVNServer\bin\svn.exe</executable>
    <trunkUrl>
      https://bserver.int:4443/trunk
    </trunkUrl>
    <workingDirectory>E:\buildserver</workingDirectory>
    <username>USER</username>
    <password>PASSWORD</password>
  </sourceControlProvider>
  <inclusionFilters>
    <pathFilter>
        <pattern>**/*.*</pattern>
    </pathFilter>
  </inclusionFilters>
</sourcecontrol>

Both the cruisecontrol.net website and google seem utterly devoid of any information on this error, other than that it probably relates to the inclusionfilter section in the block above. Can anyone provide any ideas?

Was it helpful?

Solution

Checking the log file indicated a untrusted certificate. I logged into the machine as the user and permanently accepted the certificate, and then set the CCNet service to run under the same user account.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top