Installing Jenkins on Ubuntu
Опубликовано вт, 01/30/2018 - 12:08 пользователем MaximInstallation wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
sudo apt-get update
sudo apt-get install jenkins
Upgrade
Once installed like this, you can update to the later version of Jenkins (when it comes out) by running the following commands: sudo apt-get update
sudo apt-get install jenkins
What does this package do?