Skip to content

Contains step-by-step instructions to set up a Jenkins build farm with CI/CD (Continuous Integration and Continuous Delivery/Deployment).

License

Notifications You must be signed in to change notification settings

fleschutz/Jenkins-build-farm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Set up a Jenkins Build Farm

This repo contains step-by-step instructions how to install Jenkins and sample Pipelines for CI/CD (Continuous Integration and Continuous Delivery/Deployment).

🔧 1. Install a Jenkins Server

  • Execute for Docker: docker run -p 8080:8080 -p 50000:50000 -v jenkins_home:/var/jenkins_home jenkins/jenkins:lts-jdk11
  • Execute for Linux Snaps: sudo snap install --classic jenkins
  • Otherwise, download and install it from: https://jenkins.io/download (available for Arch Linux, FreeBSD, Gentoo, macOS, OpenBSD, OpenIndiana Hipster, openSUSE, Red Hat/Fedora/Alma/Rocky/CentOS, Ubuntu/Debian, Windows)
  • NOTE: Pipelines are supported in Jenkins version 2.337 or newer.

💻 2. Browse to your new Jenkins Server and unlock it

  1. Launch your Web browser and enter the URL: http://HOSTNAME:8080 (replace HOSTNAME by the computer name where Jenkins has been installed).
  2. Execute sudo cat /PATH/TO/initialAdminPassword (replace /PATH/TO) to view the initial password saved by Jenkins during the installation.
  3. Enter the initial password to unlock Jenkins.

📌 3. Install Jenkins Plugins

  1. Click on 'Select plugins to install'
  2. Add these plugins: 'Build Name and Description Setter'
  3. Click Install and wait until the installation has finished.

🧙‍♂️ 4. Create an Administrator

  1. Enter the username, password (twice), and the full name.
  2. Afterward, enter your Jenkins URL and log in.

📝 5. Create a Pipeline Job

  1. In the dashboard click on: + Create element (on left side).
  2. Enter a job name (e.g. "sample-pipeline") and select Pipeline, then press the OK button.
  3. The job configuration is displayed now - scroll down and select the Pipeline script.
  4. As script copy&paste the content of the Jenkinsfiles/sample.txt.
  5. Click the Save button.

▶️ 6. Start the Pipeline Job

  1. Click on Dashboard (on left side).
  2. In your job list press the green Play button (on right side).
  3. The Stage View visualizes the whole build process in a neat table.

🏆 Congratulations

You're all set. Welcome to the Jenkins ecosystem! More background information can be found here:

🚀 What's Next?

📧 Feedback

Anything missing or needs to be improved? Don't be shy, just send your email feedback to: markus.fleschutz [at] gmail.com

🤝 License & Copyright

This open source project is licensed under the CC0 license. All trademarks are the property of their respective owners.

About

Contains step-by-step instructions to set up a Jenkins build farm with CI/CD (Continuous Integration and Continuous Delivery/Deployment).

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published