Showing posts with label jenkins. Show all posts
Showing posts with label jenkins. Show all posts

Thursday, January 3, 2013

Opensource development ecosystem


 My aim was to have compleatly free development ecosystem for one project. Since this is java project I whanted to have java ecosystem. As a source control system was choosen git and that's why project was hosted at github (you know where it is so I don't put link here).
the JenktocatI start looking for free CI service. First I found Travis-CI but to maintain build there I have to make additional file in my repository (but at that time I was a bit lazy to do so). Fortunally I found another service. It's BuildHive from Cloudbees (and here is the link https://buildhive.cloudbees.com/). This service is based on Jenkins-CI and it was first plus. The second plus was the way to configure build. Actually you don't need to configure build, just type shell comands to build project ant that's it. 


Monday, December 17, 2012

How to change your jenkins theme

Why? 

Because I have two environments: development and production. They look very similar and I don't whant to broke production environment during testing

How?

1) Install theme plugin
 
 2) Add your css and js (and img) files under %JEKINNS_INSTALLATION_PATH%/userContent folder

 3) Add links to these files in configuration
 

4)* You may left blank field with JS file if you don't have one

 

What I've got?

With css below 
 #top-panel > * {
    background-color : #B80000 !important;
 }
I've got this result