|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

what I'm currently doing is setup a subversion specific domain with all svn hosts listed (using wildcards and independent of protocol) with a using a single credential account to access all svn repositories.
Then I get that credential ID from browser url which is something like "6c9118bf-622a-498d-b244-3c3382d73a39"
To apply that credential to all jobs matching a regular _expression_ I use the following groovy script:
/*** BEGIN META { "name" : "scm_svn_credentials", "comment" : "Check/Fix subversion credentials in jobs", "parameters" : [ 'CREDENTIALS', 'JOBS_PAT' ], "core": "1.532.2", "authors" : [ { name : "Jose Miguel Sa" } ] } END META**/Which aplies correctly the same credential to all svn locations, but still the actual changelog checks are failing because instead of relying on svnkit implementation it is delegating those to svn client installed in the account running the scm polling process, in Jenkins if polling from master is set, or from slaves otherwise.