CICD Intro
Last updated
Last updated
A CI/CD Pipeline is simply a development practice. It tries to answer this one question: How can we ship quality features to our production environment faster?
Without the CI/CD Pipeline, the developer will manually perform each step in the diagram above. To build the source code, someone on your team has to run the command to initiate the build process manually.
Continuous Integration (CI)
Automatically tests code changes in a shared repository. Ensures that new code changes don't break the existing code.
Continuous Delivery (CD)
Automatically deploys all code changes to a testing or staging environment after the build stage, then manually deploys them to production.
Continuous Deployment
This happens when an update in the UAT environment is automatically deployed to the production environment as an official release.