Created
March 5, 2016 20:48
Revisions
-
Savjee created this gist
Mar 5, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ # Install JRE & JDK sudo apt-get install openjdk-7-jre sudo apt-get install openjdk-7-jdk # Download the security key for the Jenkins repository wget -q -O - https://jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - # Add the key to the trusted keys for apt-get sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list' # Update the list of packages sudo apt-get update # Install Jenkins sudo apt-get install jenkins