0

In Jenkins, I can checkout from the SVN server with the UI for credentials from subversion plugin. However, trying to commit new generated files after build through the batch command line with this command:

svn commit -m "log of revision"

I get the following error:

svn: E170013: Commit failed (details follow): svn: E170013: Unable to connect to a repository at URL 'https://blah/svn/blah/blah' svn: E230001: Server SSL certificate verification failed: certificate issued for a different hostname, issuer is not trusted

I get the same error when adding --username blah --password ****** options to the command.

Any ideas?

bahrep
  • 29,961
  • 12
  • 103
  • 150
Brunisboy
  • 123
  • 1
  • 19

1 Answers1

0
  1. You should install a valid and trusted server certificate onto your Subversion server.

  2. In case you can't install the certificate, add --trust-server-cert option to the command line Jenkins runs.

bahrep
  • 29,961
  • 12
  • 103
  • 150