...

/

Jenkins Kata 4: Integrate Git with Jenkins

Jenkins Kata 4: Integrate Git with Jenkins

Learn about installing and configuring the Gogs-Webhook plugin and configure and test the build trigger.

CI is the automation of a software delivery process. When integrated with an SCM system, Jenkins can be configured to run a job (or set of jobs) automatically each time code changes are pushed to a source code repository. When a build is run with each code update, bugs can be discovered and fixed immediately. This is much more efficient than allowing many problems from many code updates to clog the development lifecycle.

This kata will demonstrate how to configure a Git server to trigger Jenkins jobs when commits are pushed to the Git server.

Step 1: Install the Gogs webhook plugin

The following are the steps to install the Gogs-Webhook plugin:

  • Click Jenkins at the top left.
  • Click “Manage Jenkins.”
  • Click “Manage Plugins.”
Press + to interact
Click “Manage Jenkins”
Click “Manage Jenkins”
Press + to interact
Click “Manage Plugins”
Click “Manage Plugins”
  • Click the “Available plugins” tab.
  • Type “Gogs” into the filter field.
  • Check the box for the “Gogs” plugin.
  • Click “Install without restart.”
  • Wait for the installation to complete, then click “Go back to the top page.”
Press + to interact
Click “Available plugins” and select “Gogs” plugin and “Install without restart”
Click “Available plugins” and select “Gogs” plugin and “Install without restart”
Press + to interact
Plugin installed successfully
Plugin installed successfully

Jenkins can be extended by installing ...