Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jenkins is unable to access SVN repository

I am using tortoise SVN for version control , I am saving path to my repository that have no credentials or any user , still Jenkins is showing error.

I am using Jenkins on my local machine

Jenkins LOG

local repository

Help me solve my problem

like image 411
Keshav Avatar asked Oct 03 '15 08:10

Keshav


1 Answers

It seems SVNKit used by Jenkins doesn't support FSFS format 7 repositories. You have two options to workaround this:

  1. Create repository in Subversion 1.8 compatible format using svnadmin create --compatible-version=1.8.

  2. Configure svnserve and access this repository over svn:// protocol [recommended]

like image 195
Ivan Zhakov Avatar answered Nov 08 '22 12:11

Ivan Zhakov