October 5, 2012 . . Comments
Tags:


My Journey in Continuous Deployment


This will be a series of blogs about Continuous Deployment and how to get there. I will be writing about problems which I am facing and what I am experimenting with.

The target of this is to implement a fully automated system which continuously integrates and deploys our development to production servers.

Our main tool we use for this is Jenkins. If you are not familiar with this. Please have a look. It has lot of plugins which can help you implement automated strategies.

So, where am I at the moment?

We are fairly new at using git and are currently discussing viable options on how to implement a successful strategy for git.

Currently I have implemented the solution given here

This solution is great, all the branches are tracked and tested against the master branch. But... this provides us with another problem... What if we do not want every branch to be tested directly or tested against the master branch?

For this I am currently looking at opt-in branches by using a configuration file as described here

What I find interesting in this approach is that I could also modify it to use different jobs within Jenkins by adding parameters in the config file. More about this later as I am not sure which approach I would be finally taking.

So, our branching as described above works and all the branches are automatically pushed to the master. Just that each developer has to wait currently for about 12 minutes to know if anything has failed or is Working as expected.

I like working fast and getting Results fast.

I have been toying around with Jenkins to make things work faster but hitting lot of Road blocks on the way. As this is a pure php project we are also using phing to create the build.

The first question arises when I look at the build.xml which is one huge build process.

To make the build process faster I need to split this up into tasks which can be run in parallel.

  • Cleanup the Workspace
  • Initialize the Database
  • Run Unit Tests
  • Run Integration Tests
  • Run Statistic Analysers (PHPMD, Pdepend etc)

I had a look at Creating Downstream jobs within Jenkins. This is an Interesting Approach but does not suit our needs currently.

A downstream job is a job that executes after the Upstream job is completed.

My first attempt was to have a look at the build pipeline plugin. Works great but the Master job is successful even if the Downstream job fails. So I would never really get a fully broken build through the Downstream jobs.

I am going to check today if it is possible by using the Job Join plugin from Jenkins.

As per the information I have gathered I can run another Job after all the Downstream jobs have Completed which would allow me to aggregate all the final Results.

So, I will get started and let you guys know how it ended very soon!

To be Continued... :)

 

Comments

Please feel free to leave any comments as long as they're related to the topic.