एक CI/CD pipeline एक स्वयंचलित टप्प्यांचा क्रम आहे जो कोड commit पासून deployment पर्यंत जातो — सामान्यतः build, test, आणि deploy चरणांचा समावेश असतो. हे एक स्वयंचलित मार्ग परिभाषित करते जो कोड बदलाला deployed release मध्ये रूपांतरित करतो.
Pipeline concept
A PIPELINE is an automated workflow of STAGES that run in sequence on each code change:
→ triggered by an event (a push, a PR, a merge, a schedule)
→ each stage runs automatically; if a stage FAILS, the pipeline STOPS (broken code
doesn't proceed to later stages or production)
→ provides automation, consistency, and fast feedback
