Skip to content

Instantly share code, notes, and snippets.

@cdwilson
Created July 7, 2012 21:17
Show Gist options
  • Save cdwilson/3068116 to your computer and use it in GitHub Desktop.
Save cdwilson/3068116 to your computer and use it in GitHub Desktop.
Setup Jenkins CI on Ubuntu
#!/bin/sh
# http://pkg.jenkins-ci.org/debian/
# https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+Ubuntu
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