Can you explain to me how continuous integration works?

I want to use Continuous Integration, but I got a little lost with Ant, Jenkins, CruiseControl, Phing, PHPUnderControl, etc.

What is truly continuous integration?

I am developing a PHP application using the Zend Framework, and it is great for deploying and testing a piece of code.

thanks

+4
source share
1 answer

Continuous integration is a process that automatically builds whenever a check-in / commit occurs. This allows you to identify integration issues as soon as possible and makes it easier to identify who is responsible for the problem. As a bonus, continuous integration requires a fully automated build process, making it easier for anyone to replicate the development environment on their machine.

+10
source

Source: https://habr.com/ru/post/1342560/


All Articles