Glossary What is Continuous Integration and Continuous Deployment?
By null / 1 Jan 2023 / Topics: DevOps Agile Application development Digital transformation
By null / 1 Jan 2023 / Topics: DevOps Agile Application development Digital transformation
Continuous Integration and Continuous Deployment (CI/CD) is a DevOps practice where developer updates are finished and made available as soon as possible. Continuous integration is when a code change is implemented into the main code base quickly. And continuous deployment is when an update is made available to the users as soon as it’s ready.
Continuous integration involves writing and running tests at the outset of writing new code for an application. When an effective test is created, developers can quickly find broken code. Continuous deployment involves sending new updates through the development pipeline without human intervention. When an update passes all tests, it then goes live to the users.
By creating procedures for automated testing, continuous integration simplifies the development process. And, continuous deployment helps create a more consistent and reliable feedback loop from the application’s users. Continuous deployment is an extension of continuous integration. CI/CD streamlines the entire development process.