-
-
Save desmondmorris/844bb652ba53b313030c to your computer and use it in GitHub Desktop.
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
curl -s https://gist.githubusercontent.com/desmondmorris/844bb652ba53b313030c/raw/c9e945b4a0ad993c4fce1b5d35ecbfb1a49e231e/jekins_server.sh | sudo sh |
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
#!/bin/sh | |
sudo apt-get -qqy update | |
sudo apt-get -qqy install openjdk-6-jre | |
sudo apt-get -qqy install openjdk-6-jdk | |
sudo 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 apt-get -qqy update | |
sudo apt-get -qqy install jenkins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment