CI/CD

CI/CD is a broad term that cover several steps of DevOps.

The frequent tests of CI/CD reduce errors and code defects, making them essential for all DevOps workflow.

CI: Continuous Integration

  • It is the practice of integrating code changes in a repository multiple times a day.

CD: Continuous Deployment

  • Has two meanings:

    • The continuous deployment automatizes the code integration.

    • While the continuous delivery automatizes the final compilations to final users.

Last updated