Principles of continuous delivery

前端 未结 2 783
眼角桃花
眼角桃花 2021-01-23 09:20

As mentioned here,

Below are the principles for continuous delivery.

Every build is a potential release
Eliminate manual bottlenecks
Automate wherever p         


        
2条回答
  •  粉色の甜心
    2021-01-23 10:11

    It's quite simple - if you created a commit and pushed changes to master and after that you run a build and your automated tests are all executed successfully, then this build can be used as a release.

    So, the principle is more related to build rather than to commit, but if you've configured to start a build for every change that pushed to master (Automate wherever possible principle), then in this case it's a synonym.

提交回复
热议问题