This is a project to house a stylesheet that will make Jenkins look prettier than the default.
At isotope|eleven we use Jenkins CI for our continuous integration server. This is all good, but I kind of hate how it looks. So I built an open source project (it's what you do, right?) wherein I style it up using Sass.
Here's an example of what this project will make your jenkins look like
This is what it looks like standard.
So this easy for you to modify and use for your own organization. Here are the steps you'd need to take.
- Install the Jenkins Simple Theme Plugin.
- Set your custom css to
http://isotope11.github.com/jenkins-isotope-style/jenkins-isotope-style.css
- Fork our project, make your own changes (pull requests welcome!), add your organization's logo and colors.
- Run the ruby script provided to publish your stylesheet to github-pages for hosting, so you can just point your Jenkins custom CSS to your own fork.
- Tweak to your heart's content.
To run sass and compile the stylesheet as you make changes, run this:
sass --watch jenkins-isotope-style.scss:jenkins-isotope-style.css
To push the styles to github pages, which is where jenkins looks for them, make sure you've committed and pushed everything to master. Then run:
ruby copy_styles.rb
That'll do all the git magic. Now when you ctrl+refresh jenkins, your changes are there.