Jenkins Kata 1: Create a Job
Learn how to create and run the job and set up source control parameters.
We'll cover the following...
Jenkins organizes work into jobs. This kata will walk us through setting up a simple job using the web-storelist
repository from the Git katas.
Step 1: Create a new job
The following are the steps to create a new job:
- Return to the Jenkins homepage.
- Click the “New Item” link.
Press + to interact
- Enter “web-storelist” in the “Item Name” field.
- Select “Freestyle project.”
- Click “OK.”
Press + to interact
Jenkins organizes work into jobs. A single job can do several things, including:
- Pull code from a source control repository.
- Run shell scripts.
- Run other jobs.
- Run custom actions after a job is complete.
Executing a job is referred to as building ...