Nightly Build - CI/CD Glossary Definition
A nightly build is an automated build produced on a schedule (typically once per day) from the latest mainline code, used to catch integration problems and to give early access to unreleased changes.
In CI
Nightly builds are triggered by a cron schedule rather than a push, so they run heavier suites (full matrices, long integration tests) that would be too slow on every commit.
Related guides
Changelog - CI/CD Glossary DefinitionChangelog: A changelog is a curated, ordered record of notable changes per release (features, fixes, breaking…
Semantic Release - CI/CD Glossary DefinitionSemantic Release: Semantic release is an automated release workflow that determines the next version number f…
Matrix Build - CI/CD Glossary DefinitionMatrix Build: A **matrix build** expands one job into many parallel jobs across combinations of variables (ve…