Build Artifact - CI/CD用語集の定義
build artifact とは、ソースコードをコンパイルまたは組み立てて生成されるファイルやパッケージのことで、JAR、wheel、Docker イメージ、圧縮バイナリなどがあり、pipeline の後続ステージがデプロイやテストに用います。
CIにおいて
artifact は通常、早い段階の job で一度だけ build され、後続の job(test、deploy)へ渡されます。これにより、テストされたものと同じビットが出荷されます。ステージごとの再 build は避けましょう。
関連ガイド
Artifact Repository - CI/CD Glossary DefinitionArtifact Repository: An artifact repository is a server that stores and serves build outputs and packages (fo…
Artifact Promotion - CI/CD Glossary DefinitionArtifact Promotion: Artifact promotion is moving a single tested artifact through environments (dev to stagin…