Created
December 13, 2011 17:21
-
-
Save abtris/1473007 to your computer and use it in GitHub Desktop.
Install LTS Jenkins on Ubuntu
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 characters
| wget -q -O - http://pkg.jenkins-ci.org/debian-stable/jenkins-ci.org.key | sudo apt-key add - | |
| echo 'deb http://pkg.jenkins-ci.org/debian-stable binary/' >jenkins | |
| sudo cp jenkins /etc/apt/sources.list.d/jenkins.list | |
| sudo apt-get update | |
| sudo apt-get install -y jenkins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very useful. Thanks.