Jenkins Subversion Error - E200015: No credential to try. Authentication failed

前端 未结 5 1193

I\'ve updated the Subversion plugin of jenkins to version 2.2

Now i get following error for repos which build the first time after the upgrade and for repos where someth

5条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-01 16:33

    I was getting the exactly same exception and it was because of using build parameter in repository path, e.g.:

    http://reposerver/svn/project/${SVN_BRANCH}
    

    even in case ${SVN_BRANCH} was correctly set to 'trunk' It was not working

    when I changed repository path to:

    http://reposerver/svn/project/trunk
    

    everything works fine now

    This issue occurred after upgrading svn plugin from 1.54 to 2.2, so it looks like there is some bug in new version of svn jenkins plugin

提交回复
热议问题