DEV Community

Discussion on: Explain in few words what is Continuous Integration, Delivery, and Deployment?

Collapse
 
bjschrijver profile image
Bert Jan Schrijver

And bit longer than 1 tweet:

Continuous integration: team members integrate their work frequently. Commits are verified by automated builds and tests.

Continuous delivery: building and testing software in such a way that the software can be released to production at any time.

Continuous deployment: every change goes through the build/test pipeline and automatically gets put into production.