Re: Is it possible to parameterize a Subversion "Repository URL" location in a Jenkins build job configuration?

2015-08-31 Thread Ricardo García Fernández
Hi! Using Parametrized trigger plugin with choice parameter to select a project inside (only string name). You have to include every module manually. And configure url using parameter name in SVN Repository properties: * http://jira/svn/JiraProject/${parameter_name}/trunk You can try to use to

Re: Is it possible to parameterize a Subversion Repository URL location in a Jenkins build job configuration?

2015-08-22 Thread karthikeyan devarajan
Hi Mark, I tried the same. but jenkins job is not passing the value to the parameter. My svn url is: http://KarthikDev-PC/svn/Sample/branches/SpringExample-${Branch-Version} i can see error message under svn url: /branches/SpringExample-$Branch-Version doesn't exist in the repository. Maybe

Re: Is it possible to parameterize a Subversion Repository URL location in a Jenkins build job configuration?

2015-08-22 Thread moodysma sma
Try this example, worked for me. Don't see why it can't be modified to use SVN: https://namethattech.wordpress.com/2014/11/26/jenkins-git/ On Tuesday, April 24, 2012 at 9:46:27 AM UTC-4, Linley wrote: Hi, We have a SVN structure that consists of a main parent directory which has

Re: Is it possible to parameterize a Subversion Repository URL location in a Jenkins build job configuration?

2012-04-25 Thread Maven User
Have you tried global environment variables? Jenkins has so much intelligence built into polling, seems like a shame to ditch that for some quicky hand-rolled script :-/ On Tuesday, April 24, 2012 9:46:27 AM UTC-4, Linley wrote: Hi, We have a SVN structure that consists of a main parent

Re: Is it possible to parameterize a Subversion Repository URL location in a Jenkins build job configuration?

2012-04-25 Thread mark_kendzior
Linley, Yes, you can do exactly what you said. I am doing that exact thing. Add a String pramater to the build job. In my case I use branch as the parameter name. In the SVN URL put something like this: https://my-svn.com/branches/${branch} The SVN plugin will expand the ${branch} parameter

Re: Is it possible to parameterize a Subversion Repository URL location in a Jenkins build job configuration?

2012-04-25 Thread Maven User
Problem becomes - what happens if there are 30 jobs that need that same property? Parameters are great if you want to click build, not so hot for polling based things (or use default value I guess).