Re: Storing job configurations with source code in VCS

2016-04-20 Thread Patrick van der Velde
That sounds like a promising approach. I will go investigate that On Saturday, 9 April 2016 01:16:58 UTC+12, Martin d'Anjou wrote: > > You could look at the Simple Build For Pipeline Plugin > , combined > with some TBD way of automat

Re: Storing job configurations with source code in VCS

2016-04-08 Thread Martin d'Anjou
You could look at the Simple Build For Pipeline Plugin , combined with some TBD way of automatically creating job configurations (perhaps something like the BitBucket Branch Source Plugin

Re: Storing job configurations with source code in VCS

2016-04-07 Thread Patrick van der Velde
Hi I've tried the SCM configuration plugin and while it allows us to track what changes the users have made it doesn't allow us to keep the build job configuration for each project with the project code (or at least linked to the project code somehow. Also when we tested the SCM configuration p

Re: Storing job configurations with source code in VCS

2016-04-07 Thread Craig Rodrigues
Hi, Take a look at the SCM Sync configuration plugin https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin It allows users to modify their job configuration, but keeps track of the changes in Git or Subversion. -- Craig On Wed, Mar 9, 2016 at 8:04 PM, Patrick van der Velde <

Re: Storing job configurations with source code in VCS

2016-03-23 Thread Tom Moore
On Tuesday, March 22, 2016 at 3:25:17 PM UTC-4, Patrick van der Velde wrote: > > Hi Victor > > Well that's a good start. Being able to verify that the configuration > works is good. However I would really prefer having some kind of UI to > create the configurations to make it easier for users t

Re: Storing job configurations with source code in VCS

2016-03-22 Thread Patrick van der Velde
Hi Victor Well that's a good start. Being able to verify that the configuration works is good. However I would really prefer having some kind of UI to create the configurations to make it easier for users to edit their configurations. I'm guessing there are no plug-ins that allow me to achieve

Storing job configurations with source code in VCS

2016-03-09 Thread Victor Martinez
Hi, You can easily add some tests to verify your jobDSL jobs locally before committing/pushing them. Look at the below entry https://groups.google.com/forum/m/#!topic/job-dsl-plugin/xBOxlCMc6Qg What I also do it is running a local jenkins docker container and apply those changes as the final v

Storing job configurations with source code in VCS

2016-03-09 Thread Patrick van der Velde
Hi All We are trying to improve our build server setup and are trying to solve the problem that users can change the configuration of their builds through the UI, but those changes are not stored in source control, so it is hard to determine what has changed and who made those changes. Addition