M. Ahmed

CI vs CD

Continuous Integration

Continuous Integration (CI) is a DevOps software development practice where developers regularly merge their code changes into a central repository, after which automated builds and tests are run. Continuous Integration most often refers to the build or integration stage of the software release process and entails both an automation component (e.g. a CI or build service) and a cultural component (e.g. learning to integrate frequently). The key goals of Continuous Integration are to find and address bugs quicker, improve software quality, and reduce the time it takes to validate and release new software updates.

Continuous Delivery

Continuous Delivery (CD) is a software development practice where code changes are automatically prepared for a production release. A pillar of modern application development, continuous delivery expands upon continuous integration by deploying all code changes to a testing environment and/or a production environment after the build stage. When properly implemented, developers will always have a deployment-ready build artifact that has passed through a standardized test process.

Continuous Delivery vs. Continuous Deployment

With Continuous Delivery, every code change is built, tested, and then pushed to a non-production testing or staging environment. There can be multiple parallel test stages before a production deployment. The difference between Continuous Delivery and Continuous Deployment is the presence of a manual approval to update to production. With Continuous Deployment, production happens automatically without explicit approval.