...

/

Jenkins Kata 1: Create a Job

Jenkins Kata 1: Create a Job

Learn how to create and run the job and set up source control parameters.

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
Click "New Item"
Click "New Item"
  • Enter “web-storelist” in the “Item Name” field.
  • Select “Freestyle project.”
  • Click “OK.”
Press + to interact
Create new item
Create new item

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 ...