Running Jenkins locally
The following is a screenshot of the main dashboard page of Jenkins. We will go over each item in detail:

Creating a new item
In the following steps, we will create a Freestyle project
as a new item, but there could potentially be many more items to add depending on the plugins that are installed:
- If you click the
New Item
link, you will go to the following page:

- We have not installed any plugins, so the only type of item we can use is a
Freestyle project
. - Let's enter a name for the
Freestyle project
and clickOK
:

- You will be presented with the following screen to configure your
Freestyle project
:

- Let's create a simple build for Jenkins that prints out
Hello World
:

- Make sure to click the
Add build step
button and then chooseExecute shell
. - Lastly, click
Save
and you will go back to the project dashboard screen. - Next make sure to click the
Build Now
button to get a build triggered,and you will see a text popup that saysBuild Scheduled
:

- Notice that in the following screenshot...