Deployment Pipeline - CI/CD用語集の定義
deployment pipeline は、すべての変更が本番環境まで辿る自動化された build - テスト - deploy の経路です。
deployment pipeline とは、変更が commit から build、テスト、staging を経て本番環境まで通る自動化された経路です。各ステージが次のステージの gate となり、検証済みの変更のみが先に進みます。
ステージ
典型的なステージは commit(build と単体テスト)、受け入れ(結合テスト)、release(deploy)です。いずれかのステージで失敗すると、その変更はそれ以上先へ昇格されません。
関連ガイド
Continuous Delivery (Model) - CI/CD Glossary DefinitionContinuous Delivery (Model): Continuous delivery extends continuous integration by keeping every validated ch…
Continuous Integration (Model) - CI/CD Glossary DefinitionContinuous Integration (Model): Continuous integration is the practice of merging code to a shared mainline f…
Continuous Testing - CI/CD Glossary DefinitionContinuous Testing: Continuous testing is running automated tests throughout the delivery pipeline, from comm…