CI/CD pipeline yra automatizuota etapų seka, per kurią praeina kodas — nuo commit iki deployment — paprastai apimanti build, test ir deploy žingsnius. Jis apibrėžia automatizuotą kelią, kuris paverčia kodo pakeitimą į deployment'ą.
Pipeline koncepcija
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
