Continuous Integration and automation with Jenkins
← Back to Linux Basics and DevOps Automations PageJenkins is an open-source automation server used to implement Continuous Integration and Continuous Delivery (CI/CD). It automates building, testing, and deploying applications.
# Ubuntu example
sudo apt update
sudo apt install openjdk-11-jdk
sudo apt install jenkins
sudo systemctl start jenkins
sudo systemctl enable jenkins