DEVOPS DAY 5
Continuous Integration using Jenkins What we’ll cover? Introduction to CI Introduction to Jenkins History of Jenkins Pros and Cons of using Jenkins JDK installation Maven Installation Install and Configure Tomcat Jenkins's installation in Windows Jenkins's installation in Linux Create user in Jenkins Q&A Continuous Integration Continuous Integration is a development practice that requires developers to integrate code into a shared repository at regular intervals. This concept was meant to remove the problem of finding later occurrence of issues in the build lifecycle. Continuous integration requires the developers to have frequent builds. The common practice is that whenever a code commit occurs, a build should be triggered. Why Jenkins? Jenkin is the most popular, open-source Continuous Integration tool. It has tons of plugins that enhance its functionality. Jenkins is an open-source automation tool written in Java programming language that allows continuous integration. ...