O conductă CI/CD este o succesiune automată de etape prin care codul trece — de la commit la deployment — incluzând tipic etapele de build, test și deploy. Ea definește calea automată care transformă o schimbare de cod într-o versiune deployed.
Conceptul conductei
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
