Byggautomation är processen att automatiskt kompilera, paketera och förbereda kod till deployabara artefakter — utan manuella steg. Det är det första större steget i en CI/CD-pipeline och omvandlar källkod till något som kan testas och distribueras.
Vad gör byggsteget
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.
