Jenkins – Hello World
Everything in the entire IT world starts with the Hello World
example, to show that the basics work fine. Let's follow this rule and use it to create the first Jenkins pipeline:
- Click on New Item:
- Enter
hello world
as the item name, choose Pipeline, and click on OK:
- There are a lot of options. We will skip them for now and go directly to the Pipeline section:
- Then, in the Script textbox, we can enter the pipeline script:
pipeline { agent any stages { stage("Hello") { ...