Quantcast
Channel: Is there a way to keep Hudson / Jenkins configuration files in source control? - Stack Overflow
Browsing latest articles
Browse All 11 View Live

Answer by Andrey for Is there a way to keep Hudson / Jenkins configuration...

A more accurate .gitignore, inspired by the reply from nepa:*!.gitignore!/jobs/!/jobs/*//jobs/*/*!/jobs/*/config.xml!/users/!/users/*//users/*/*!/users/*/config.xml!/*.xmlIt ignores everything except...

View Article



Answer by nepa for Is there a way to keep Hudson / Jenkins configuration...

The way I prefer is to exclude everything in the Jenkins home folder except the configuration files you really want to be in your VCS. Here is the .gitignore file I...

View Article

Answer by kenorb for Is there a way to keep Hudson / Jenkins configuration...

You can find configuration files in Jenkins home folder (e.g. /var/lib/jenkins).To keep them in VCS, first login as Jenkins (sudo su - jenkins) and create its git credentials:git config --global...

View Article

Image may be NSFW.
Clik here to view.

Answer by Wilfred Hughes for Is there a way to keep Hudson / Jenkins...

I've written a plugin that lets you check your Jenkins instructions into source control. Just add a .jenkins.yml file with the contents:script: - make - make testand Jenkins will do it:

View Article

Answer by VonC for Is there a way to keep Hudson / Jenkins configuration...

Note that Vogella has a recent (January 2014, compared to the OP's question January 2010) and different take on this.Consider that the SCM Sync configuration plugin can generate a lot of commits.So,...

View Article


Answer by okigan for Is there a way to keep Hudson / Jenkins configuration...

Answer from Mark (https://stackoverflow.com/a/4066654/142207) should work for SVN and Git (although Git configuration did not work for me).But if you need it to work with Mercurial repo, create a job...

View Article

Answer by Morten for Is there a way to keep Hudson / Jenkins configuration...

I checked in hudson entirely, you could use this as a starting point https://github.com/morkeleb/continuous-delivery-with-hudsonThere are benefits to keeping entire hudson in git. All config changes...

View Article

Answer by Emil Sit for Is there a way to keep Hudson / Jenkins configuration...

To manually manage your configuration with Git, the following .gitignore file may be helpful.# Miscellaneous Hudson litter*.log*.tmp*.old*.bak*.jar*.json# Generated Hudson...

View Article


Answer by Matt Solnit for Is there a way to keep Hudson / Jenkins...

There is a new SCM Sync Configuration plug-in which does exactly what you are looking for.SCM Sync Configuration Hudson pluginis aimed at 2 main features :Keep sync'ed your config.xml (and other...

View Article


Answer by Peter Schuetze for Is there a way to keep Hudson / Jenkins...

Most helpful AnswerThere is a plugin called SCM Sync configuration plugin.Original AnswerHave a look at my answer to a similar question. The basic idea is to use the filesystem-scm-plugin to detect...

View Article

Is there a way to keep Hudson / Jenkins configuration files in source control?

I am new to Hudson / Jenkins and was wondering if there is a way to check in Hudson's configuration files to source control.Ideally I want to be able to click some button in the UI that says 'save...

View Article
Browsing latest articles
Browse All 11 View Live




Latest Images