6

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

bahrep
  • 29,961
  • 12
  • 103
  • 150
Keshav
  • 1,917
  • 18
  • 22

1 Answers1

5

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]

Ivan Zhakov
  • 3,981
  • 28
  • 24
  • Hi, Thanx for the answer , can you please elaborate how to configure svn server and access it over svn:// protocol and what's diff between file and svn protocol? – Keshav Oct 04 '15 at 05:24
  • @Keshav I think it's offtopic for this question, but svnserver configuration described in detail in SVNBook: http://svnbook.red-bean.com/nightly/en/svn.serverconfig.svnserve.html – Ivan Zhakov Oct 05 '15 at 06:40