Skip to content

Instantly share code, notes, and snippets.

@kurisuchan
Created September 12, 2011 11:38
Show Gist options
  • Save kurisuchan/1211072 to your computer and use it in GitHub Desktop.
Save kurisuchan/1211072 to your computer and use it in GitHub Desktop.
Installing Jenkins CI server on Ubuntu
# Installing JDK and JRE
sudo apt-get install openjdk-6-jre-headless
sudo apt-get install openjdk-6-jdk
# Installing Jenkins
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo aptitude update
sudo aptitude install jenkins
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment