InterviewSolution
Saved Bookmarks
| 1. |
What is CI and CD process? |
Answer»
Continuous Integration is a process that helps developers to INTEGRATE CODE into a shared repository several times. Each check-in is VERIFIED by an automated build process, allowing teams to detect problems early.
Continuous delivery is an EXTENSION of a continuous integration process which helps to make sure that new changes can be released to the customers quickly in a sustainable way. |
|