Entry Criteria - CI/CD用語集の定義
entry criteriaは、テストサイクルやrelease branchなどのフェーズが開始を許可される前に満たされなければならない条件です。
entry criteriaは、あるフェーズ (テスト、release branch、hardening期間など) が開始を許可される前に満たされなければならない条件です。
entry criteriaはフェーズが早すぎるタイミングで始まるのを防ぎます。buildが緑ですらないうちに正式なテストサイクルを始めるとテスターの時間を無駄にするため、「smoke testが通る」のようなentry criterionがフェーズを守ります。
例
QAサイクルのentry criteria: buildがコンパイルされること、ユニットテストが緑であること、そしてデプロイ可能なartifactがstaging environmentに存在すること。
関連ガイド
Exit Criteria - CI/CD Glossary DefinitionExit Criteria: Exit criteria are the conditions that must be true for a phase (a test cycle, a hardening peri…
Definition of Ready - CI/CD Glossary DefinitionDefinition of Ready: A definition of ready is an agreed checklist a work item must satisfy before the team st…
Acceptance Gate - CI/CD Glossary DefinitionAcceptance Gate: An acceptance gate is a checkpoint where a change is verified against its acceptance criteri…