Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 configuration' and have the Hudson configuration files checked in to source control.

share|improve this question

7 Answers

up vote 12 down vote accepted

Have a look at my answer to a similar question.

The basic idea is to use the filesystem-scm-plugin to detect changes to the xml-files. Your second part would be committing the changes to SVN.

EDIT: If you find a way to determine the user for a change, let us know.

EDIT 2011-01-10

Meanwhile there is a new plugin: SCM Sync configuration plugin. Currently it only works with subversion and git, but support for more repositories is planned. I am using it since version 0.0.3 and it worked good so far.

share|improve this answer
Thanks for the SCM Sync configuration plugin. Does exactly what its supposed to! – Dexter May 13 at 17:08

There is a new SCM Sync Configuration plug-in which does exactly what you are looking for.

SCM Sync Configuration Hudson plugin is aimed at 2 main features :

  • Keep sync'ed your config.xml (and other ressources) hudson files with a SCM repository
  • Track changes (and author) made on every file with commit messages

I haven't actually tried this yet, but it looks promising.

share|improve this answer

Check out a recent post on the Hudson blog:

Keeping your configuration and data in Subversion

The post is specific to Subversion as the SCM.

share|improve this answer

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 state
/.owner
/secret.key
/queue.xml
/fingerprints/
/shelvedProjects/
/updates/

# Tools that Hudson manages
/tools/

# Extracted plugins
/plugins/*/

# Job state
builds/
workspace/
lastStable
lastSuccessful
nextBuildNumber

See https://gist.github.com/780105 and http://bit.ly/i58rg2 for more details.

share|improve this answer

There are a few relevant open issues for this:

share|improve this answer

I checked in hudson entirely, you could use this as a starting point https://github.com/morkeleb/continuous-delivery-with-hudson

There are benefits to keeping entire hudson in git. All config changes are logged and you can test the testup quite easily on one machine and then update the other machine(s) using git pull.

We used this as a boilerplate for our hudson continuous delivery setup at work.

Regards Morten

share|improve this answer

Not sure if you have checked this: http://wiki.hudson-ci.org/display/HUDSON/Administering+Hudson

share|improve this answer
Thanks Amit! This will be very helpful in the case that I wanted to do a backup of Hudson. I am really more interested in keeping track of the CI configuration - so i want to be able to look at source control and say : user X changes to way project Y compiles and then it stopped compiling. Maybe if there was a way for Hudson to pull its own configuration files from source control that will also do the trick. – Yuval Jan 18 '10 at 16:09
Why can't you put these config files into the version control? – phaedrus Jan 18 '10 at 16:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.