How to Integrate TortoiseSVN and Jenkins?

jenkins, svn, tortoisesvn

Solution

Ok, did some more digging and figured it out myself. I enabled command-line through TortoiseSVN, set up svnserve.exe as a service on my windows machine, ran the service, and then used the svn:// protocol as the URL for the Jenkins build. Now everything is working.

Problem

I'm building a little prototype on my Windows machine. I've got Jenkins running, and am using TortoiseSVN as my repo, the location of which is at: file:///C:/SVNRepo When I try to add that as the repository URL in Jenkins I get the following error: ``` Unable to access file:///C:/SVNRepo : svn: E180001: Unable to open an ra_local session to URL svn: E180001: Unable to open repository 'file:///C:/SVNRepo' ``` Strangely enough that repository location works in Subclipse though. What am I missing to use TortoiseSVN with Jenkins?

Original source