DevOps: Tools. Jenkins

Jenkins is one open source tool to perform continuous integration.

The basic functionality of Jenkins is to monitor a version control system and to start and monitor a build system if changes occur.

Jenkins monitors the whole build process and provides reports and notifications to alert maintainers on success or errors. Basically Continuous Integration is the practice of running your tests on a non-developer machine automatically every time someone pushes new code into the source repository.

This has the tremendous advantage of always knowing if all tests work and getting fast feedback. The fast feedback is important so you always know right after you broke the build what you did that failed and how to revert it.

Jenkins is an open source tool with much support from its community.

  • Its free of cost

  • Installation is easier.

  • It has more than 1000 plug-in to make the work easier.

  • It is easy to create new Jenkins plugin if one is not available.

  • It is a tool which is written in Java. Hence it can be portable to almost all major platforms.

Last updated