Build automatizálás az a folyamat, amely automatikusan lefordítja, csomagol és előkészít kódot telepíthető összetevőkké — manuális lépések nélkül. Ez a CI/CD pipeline első fő szakasza, amely forráskódot olyan valami vált át, amely tesztelhető és telepíthető.
Mit csinál a build fázis
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.
