Build-Automatisierung ist der Prozess der automatischen Kompilierung, Paketierung und Vorbereitung von Code in deploybare Artefakte — ohne manuelle Schritte. Es ist die erste große Phase einer CI/CD-Pipeline und wandelt Quellcode in etwas um, das getestet und deployed werden kann.
Was die Build-Phase tut
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.
