CI/CD
CI/CD is a method to frequently deliver apps to customers by introducing automation into the stages of app development.
CI and CD stand for continuous integration and continuous delivery/continuous deployment. In very simple terms, CI is a modern software development practice in which incremental code changes are made frequently and reliably.
Automated build-and-test steps triggered by CI ensure that code changes being merged into the repository are reliable
Continuous Integration"
"CI" refers to continuous integration, which is an automation process for developers. Successful CI means new code changes to an app are regularly built, tested, and merged to a shared repository.
Continuous deployment
"CD" refers to continuous deployment, which are related concepts that sometimes get used interchangeably.
Last updated