Skip to main content

Posts

Showing posts with the label Distributed Teams

Continuous Integrations and Distributed Teams

Implementing Continuous Integrations The practice of Continuous Integrations (CI) relies on certain pre-requisites being in place. ·         Version Control Everything in your project must be checked in to a single version control Repository ·         An Automated Build You must be able to start your build from the command line. You can start off with a command-line program that tells you IDE to build your software and then runs your tests, or it can be complex collection of multistage build scripts that call one another. ·         Agreement of the Team If people don’t adopt the discipline necessary for it to work, your attempts at continuous integration will not lead to the improvement in quality that you hoped for. Automated testing is one very useful side effect of implementing CI. With CI, we can detect Integration issues much earlier in...