Build automation என்பது কম্பাইলிং, প্যাকেজிং, மற்றும் தயாரிப்பு செயல்முறையை தானாக மேற்கொண்டு, குறிப்பு மேல் முறைகள் இல்லாமல் குறியீட்டை பயன்பாட்டுக்குத் தகுந்த பொருட்களாக மாற்றுவது. இது CI/CD pipeline-ன் முதல் முக்கிய நிலை, மூல குறியீட்டை சோதித்து பயன்படுத்த முடியுமான ஏதாவது ஆக மாற்றுகிறது.
Build நிலை என்ன செய்கிறது
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.
