બિલ્ડ ઑટોમેશન એ કોડને સ્વચાલિતપણે કમ્પાઇલ, પેકેજ અને તૈયાર કરીને તેને જમા કરી શકાય તેવી આર્ટિફેક્ટમાં રૂપાંતરિત કરવાની પ્રક્રિયા છે — કોઈ મેનુઅલ પગલા વિના. તે CI/CD પાઇપલાઇનનો પ્રથમ મુખ્ય તબક્કો છે, જે સોર્સ કોડને કોઈ એવી વસ્તુમાં ફેરવે છે જેનું પરીક્ષણ અને જમા કરવું શક્ય છે.
બિલ્ડ તબક્કો શું કરે છે
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.
