बिल्ड अटोमेशन भनेको स्वचालित रूपमा कोड कम्पाइल गर्ने, प्याकेज गर्ने, र तयारी गर्ने प्रक्रिया हो जसले स्रोत कोडलाई विस्तार योग्य कलाकृति (artifacts) मा परिणत गर्छ — म्यानुएल चरणहरू बिना। यो 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.
