Hi
In one of my Jenkins jobs, I want to run ‘svn ls’ against the repository from which Jenkins has checked out its working copy. My svn client is compatible with Jenkins’ svn working copy format.
I get Jenkins to check out the working copy and then run some svn commands in the build steps.
If I run ‘svn status’ it works fine. But with ‘svn ls’ I see:
C:\Jenkins\workspace\tagLog>svn ls --verbose --trust-server-cert
svn: E215004: Authentication failed and interactive prompting is disabled; see the --force-interactive option
svn: E215004: Unable to connect to a repository at URL <repo url>
svn: E215004: No more credentials or we tried too many times.
Authentication failed
Please can anyone suggest how to make this work?
Best regards
David
Hi Jan
The actual command I used was:
svn ls --verbose --non-interactive --trust-server-cert https:<myurl>
David
Thanks for your reply.
After trying lots of things, I moved the job from a Windows slave to a Linux slave and it worked fine ;-)
David