0 votes
in Jenkins by
Explain the difference between Continuous Integration, Continuous Delivery, and Continuous Deployment?

1 Answer

0 votes
by

Continuous integration: It is the process of constantly integrating the changes into the main software during all the stages of the delivery pipeline, once the changes are tested on the test environment. CI can also be referred to as the work done by the Jenkins or Bamboo server.

Continuous delivery: It is the delivery of code (shipping) to a particular environment like test, integration or production through a manual release.

Continuous deployment: It is the automatic release of code into the staging or production environment, once the testing is done in the CI stage.

Related questions

0 votes
asked Nov 15, 2019 in Continuous Integration by rajeshsharma
+1 vote
asked Aug 8, 2020 in DevOps by sharadyadav1986
...