Re: a lot of jobs

2020-04-15 Thread jeremy mordkoff
I was thinking about this the other day. My plan is to create a simple jenkins job that manages all of my other jenkins jobs. Some of the other suggestions might feed into this. My goal is to able to bootstrap a new jenkins server in minutes for disaster recovery and for bringing up new develo

Re: a lot of jobs

2020-04-15 Thread Nick Stolwijk
We use the jobDSL to manage the 10 different jobs for the 100+ Git repositories we have. We are trying to reduce the number of jobs per repository by using a pipeline library in combination with a Jenkinsfile in each repository. The original jobs: - Build develop with deploy to Nexus - Build featu

Re: a lot of jobs

2020-04-15 Thread marouane zhani
Hi Marcin, I have the same needs actually, do you have a working solution for that ? I have tried a bit the Inheritance plugin ( https://plugins.jenkins.io/project-inheritance/) but I am still having some problems with it. Looking forward to your reply. Kind regards, Marouane Le dimanche 18 n

Re: What are you using for modifying a lot of jobs?

2014-06-05 Thread JonathanRRogers
On Wednesday, June 4, 2014 12:08:28 PM UTC-4, Damián José wrote: > > I built some groovy scripts that requests remotely the REST API of > Jenkins. > Right now these scripts are only reading data from Jenkins but I plan to > also use them to make changes. > > Each Jenkins job has a file called

Re: What are you using for modifying a lot of jobs?

2014-06-04 Thread Damián José
T requests. -- View this message in context: http://jenkins-ci.361315.n4.nabble.com/What-are-you-using-for-modifying-a-lot-of-jobs-tp3560780p4705272.html Sent from the Jenkins users mailing list archive at Nabble.com. -- You received this message because you are subscribed to the Google Groups

Fwd: a lot of jobs

2012-11-21 Thread J Arrizza
It does look similar. However, the parameters it handles ( e.g blockBuildWhenDownstreamBuilding) are part of the default Jenkins behavior. At some point, they will also have to add external plugin support. This is where the bigger problem is waiting for them. If they can find a very simple, very el

RE: a lot of jobs

2012-11-21 Thread William Soula
] Sent: Tuesday, November 20, 2012 8:39 PM To: jenkinsci-users@googlegroups.com Subject: Re: a lot of jobs We have 420+ jobs. They are currently in Hudson but I am trying to convert to Jenkins, see below. To manage them I wrote a nice set of ruby scripts where I declared the jobs and load them

Re: a lot of jobs

2012-11-20 Thread J Arrizza
We have 420+ jobs. They are currently in Hudson but I am trying to convert to Jenkins, see below. To manage them I wrote a nice set of ruby scripts where I declared the jobs and load them into a database (i.e. a ruby hash). Then I use that DB to check if a job is new and needs to be created, or i

Re: a lot of jobs

2012-11-20 Thread Sami Tikka
I type some Groovy commands into the Script Console you can find under the Manage Jenkins link in the sidebar. -- Sami Marcin Biegan kirjoitti 15.11.2012 kello 2.39: > Hi, > > I wanted to ask how do you handle configuring multiple jobs. We have > about 10 maven projects to build in at least 2

Re: a lot of jobs

2012-11-20 Thread krishna chaitanya kurnala
Hi You can consider Configuration Slicing Plugin. thanks Krishna Krishna Chaitanya On Sat, Nov 17, 2012 at 7:56 PM, Marcin Biegan wrote: > It does not suite my needs, it just allows to organize multiple jobs > which are supposed to all be triggered by the same event, am I > correct? > > My jo

Re: a lot of jobs

2012-11-17 Thread Marcin Biegan
It does not suite my needs, it just allows to organize multiple jobs which are supposed to all be triggered by the same event, am I correct? My jobs are pretty similar to each other - ex. build jobs have the same configuration except svn url, downstream jobs list and maybe some details (like email

Re: a lot of jobs

2012-11-15 Thread Marek Gimza
Marcin, Do you know about the "MultiJob" plugin? https://wiki.jenkins-ci.org/display/JENKINS/Multijob+Plugin Regards, Mgimza On Wed, Nov 14, 2012 at 7:39 PM, Marcin Biegan wrote: > Hi, > > I wanted to ask how do you handle configuring multiple jobs. We have > about 10 maven projects to build i

a lot of jobs

2012-11-14 Thread Marcin Biegan
Hi, I wanted to ask how do you handle configuring multiple jobs. We have about 10 maven projects to build in at least 2 versions (trunk/ branch), which makes 20 jobs, some more for additional tests, releases, maybe deployment, verification, etc. Manually adding permissions and adjusting configurat