Build automation is the process of automatically compiling, packaging, and preparing code into deployable artifacts — without manual steps. It's the first major stage of a CI/CD pipeline, turning source code into something that can be tested and deployed.
What the build stage does
The BUILD automates turning source code into a deployable ARTIFACT:
→ INSTALL dependencies (npm install, pip install, etc.)
→ COMPILE / transpile code (if needed: Java, TypeScript, Go, etc.)
→ BUNDLE / package (frontend bundles, JARs, binaries)
→ BUILD container images (Docker) if containerized
→ produce ARTIFACTS ready for testing and deployment
→ Automated, consistent, repeatable — no manual build steps.
