ビルドターゲット - CI/CD 用語集の定義
ビルドターゲットは、build system が生成できる離散的で名前付きの出力(バイナリ、ライブラリ、テスト)であり、そのソースと依存関係とともに宣言されます。build ツールはターゲットグラフを解決して、ある変更に対して何を再ビルドすべきかを判断します。
CI では
ツリー全体ではなく、変更の影響を受けたターゲットだけを build またはテストすることが、大規模モノレポの CI を高速に保つ要因です。
関連ガイド
Compilation Unit - CI/CD Glossary DefinitionA compilation unit is the chunk of source a compiler processes independently into one object file - the granu…
Build Phase - CI/CD Glossary DefinitionA build phase is one stage of a build - configure, compile, link, package - run in order, so CI can cache and…
Build Profile - CI/CD Glossary DefinitionA build profile is a named set of compiler and build settings - debug vs release - that controls optimization…