Continuous Integration vs. Continuous Delivery vs. Continuous Deployment

后端 未结 14 2257
遇见更好的自我
遇见更好的自我 2020-12-04 04:25

What\'s the difference between these three terms? My university provides the following definitions:

Continuous Integration basically just means that

14条回答
  •  情歌与酒
    2020-12-04 04:50

    Atlassian posted a good explanation about Continuous integration vs. continuous delivery vs. continuous deployment.

    In a nutshell:

    Continuous Integration - is an automation to build and test application whenever new commits are pushed into the branch.

    Continuous Delivery - is Continuous Integration + Deploy application to production by "clicking on a button" (Release to customers is often, but on demand).

    Continuous Deployment - is Continuous Delivery but without human intervention (Release to customers is on-going).

提交回复
热议问题