28



  1. What are CI, CD, and CT?


CI (continuous integration) allows developers to write, update, or fix a feature, then commit a code to the central code repository reliably, multiple times a day.

CD (Continuous delivery) is the implementation of automating the entire software release process. Once code has passed all of the tests, deployment becomes the last step in the process. In a DevOps pipeline, CD often is referred to as continuous delivery but can also mean continuous deployment.


CT (Continuous testing) is a software development process in which applications are tested continuously throughout the entire software development life cycle (SDLC). The goal of CT is to evaluate software quality across the SDLC, providing critical feedback earlier and enabling higher-quality and faster deliveries.

Comments

Popular posts from this blog