Chapter 7. Continuous Integration

Continuous Integration is one of the most used terminologies in today's software world. Wherever you go in the software world, everybody talks about continuous integration. So what is continuous integration?

Continuous Integration is the practice of integrating all of the software code in a shared repository; prepare an automated build for every commit, and run the automated tests without any manual effort. It helps developers to detect problems early in fail fast mode. Here, early means as soon as a developer commits the code; within a couple of seconds or minutes (as per the project size), continuous integration process will notify about the success or failure of the build. Since errors are caught in the early ...

Get Mastering Gradle now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.