Last active
January 1, 2016 18:09
-
-
Save basmussen/8181895 to your computer and use it in GitHub Desktop.
Install Jenkins (Debian)
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/bash | |
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - | |
echo "deb http://pkg.jenkins-ci.org/debian binary/" >> /etc/apt/sources.list | |
apt-get update | |
apt-get -y install jenkins | |
# scm clients | |
apt-get -y install git | |
apt-get -y install subversion | |
apt-get -y install curl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment