build automation code को deployable artifacts में स्वचालित रूप से compile, package और तैयार करने की प्रक्रिया है — बिना किसी मैनुअल step के। यह CI/CD pipeline का पहला प्रमुख stage है, जो source code को ऐसी चीज़ में बदल देता है जिसे test और deploy किया जा सकता है।
build stage क्या करता है
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.
