解决Windows10 Jenkins打包使用svn checkout 出现Server SSL certificate verification failed问题

现象:使用Jenkins自带插件可以检出http或者HTTPS的svn地址,但是在使用svn命令无法检出HTTPS的地址,报错Server SSL certificate verification failed: certificate issued for a different hostname, issuer is not trusted
解决办法:
如果你的本地svn版本大于1.6,你搜到的–trust-server-cert已经过时了,使用–non-interactive --trust-server-cert-failures="unknown-ca,cn-mismatch,expired,not-yet-valid,other"解决这个问题
例如:svn checkout %SVN_URL% %SVN_DIR% --non-interactive --trust-server-cert-failures=“unknown-ca,cn-mismatch,expired,not-yet-valid,other” --username xxxx --password 123

你可能感兴趣的:(Jenkins)