Build Artifact - CI/CD Glossary Definition
A build artifact is a file or package produced by compiling or assembling source code, such as a JAR, wheel, Docker image, or zipped binary, that downstream pipeline stages deploy or test.
In CI
Artifacts are usually built once in an early job and passed to later jobs (test, deploy) so the same bits that were tested are the ones that ship. Avoid rebuilding per stage.
Related guides
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…