...

/

Jenkins Kata 2: Build Steps

Jenkins Kata 2: Build Steps

Learn about adding a build step and the associated result codes.

Jenkins jobs execute build steps. Build steps can be general-purpose scripts or custom steps designed for a specific purpose. This kata will show us how to configure the basic steps in a job.

Step 1: Add a build step

To execute a build step that writes the build number to a file.

  • Click “Configure.”
  • Click the “Build Steps” tab.
  • Click “Add build step.”
  • Click “Execute shell.”
  • Enter the following code into the “Command” field:
Press + to interact
echo Build ${BUILD_NUMBER} at $(date) > buildlog.txt
  • Click “Save.”
Press + to interact
Click the "Configure" tab
Click the "Configure" tab
Press + to interact
Click "Execute shell"
Click "Execute shell"
Press + to interact
The "Execute shell" command field
The "Execute shell" command field

Commands

Command / Parameter

Description

echo

This writes text to standard output.

Build ${BUILD_NUMBER} at $(date)

This is the text to write out.

  • `Build` and `at` are text.
  • ${BUILD_NUMBER}: This is a Jenkins environment variable that's set to the ID of the running build.
  • $(date): This is an environment variable that returns the current date.

This script simply appends a new line, including the build number and the ...