- Get link
- X
- Other Apps
This is a small tutorial to get you to setup Jenkins with git hub and build maven code in few minutes. First, we install git on our host machine using the following commands: sudo yum install git to verify that git is installed properly use the following command: git --version Second, we install Jenkins Add the Jenkins repository to the yum repo, and install Jenkins from here. Run the following commands on terminal: sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo sudo rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key sudo yum install jenkins I am using a Redhat distribution.If you are using any other OS go to the following link and run the commands as described respective to your OS: https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins Jenkins requires Java in order to run.If it is not already present to install the Open Java Development Kit (OpenJDK) run the following: sudo yum install java To s...