Build Cache - CI/CD Glossary Definition
A build cache keys compiled outputs by a hash of their inputs and restores them when inputs are unchanged, skipping recompilation across runs and machines.
Related guides
Incremental Build - CI/CD Glossary DefinitionAn incremental build recompiles only the parts of a project affected by a change, reusing prior outputs for e…
Layer Caching - CI/CD Glossary DefinitionLayer caching reuses unchanged Docker image layers between builds, so only the steps after the first change r…
Hermetic Build - CI/CD Glossary DefinitionA hermetic build runs isolated from the network and host state, depending only on declared inputs - the basis…