Help me improve my continuous deployment workflow

前端 未结 4 670
独厮守ぢ
独厮守ぢ 2021-01-29 18:06

I\'ve been developing a workflow for practicing a mostly automated continuous deployment cycle for a PHP project. I\'d like some feedback on possible process or

4条回答
  •  忘掉有多难
    2021-01-29 18:51

    Importent to make your tests extremely fast, i.e. no IO and ability to run parallel and distributed tests. Don't know how applicable it is with php, but if you can test units of code with in memory db and mock the environment you'll be better off.

    If you have a QA/QC or any human in the way between the commit and production you would have a problem getting to a full continuous deployment. The key is your trust your testing, monitoring and auto response (immune system) enough to eliminate error prone process evolving humans from your system.

提交回复
热议问题