CI/CD pipeline stages का एक स्वचालित अनुक्रम है जिससे code गुजरता है — commit से deployment तक — आमतौर पर build, test और deploy steps शामिल होते हैं। यह उस स्वचालित मार्ग को परिभाषित करता है जो एक code बदलाव को एक deployed release में बदल देता है।
pipeline अवधारणा
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
