Install Jenkins to ubuntu 18.04 LTS
add key
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
add sources
sudo sh -c 'echo "deb https://pkg.jenkins.io/debian-stable binary/" >> /etc/apt/sources.list.d/jenkins.list'
update
sudo apt update
install
sudo apt install -y jenkins
Reference