Build Stage - CI/CD用語集の定義
build stageとは、build、test、deployなど関連する作業をまとめたパイプラインの名前付きフェーズです。
build stage とは、パイプライン内の論理的なフェーズ(build、test、deploy)であり、jobをまとめ、通常は次のフェーズへの移行を制御します。GitHub Actionsには明示的な stages キーワードがなく、stageはjobと needs: 依存関係でモデル化します。
Actionsでのstageのモデル化
stageごとに1つのjobを使い、needs: で連結して deploy が test を待ち、test が build を待つようにします。これにより、ネイティブの stages ブロックを持つプラットフォームと同じ順次ゲーティングが実現できます。
関連ガイド
Build Step - CI/CD Glossary DefinitionBuild Step: A build step is a single unit of work in a job, either a shell command (`run:`) or a reusable act…
Pipeline - CI/CD Glossary DefinitionPipeline: A **pipeline** is the automated sequence of stages - build, test, deploy - a code change passes thr…
Build Trigger - CI/CD Glossary DefinitionBuild Trigger: A build trigger is the event that launches a pipeline: a push, a pull request, a tag, a schedu…