Skip to content

Category: Jenkins

Basics of Jenkins

Jenkins is free tool and is considered one of the important tool for DevOps related activities. It is  written entirely in Java language.

Before we move further we need to understand one key term “continuous integration/deployment”

What is continuous integration/deployment

  • You have a large team of 15 developers.
  • Code is changed and committed many times in a day
  • “Commit” means code will be “build” and tested
  • If “testing” is good, then build is tested for deployment
  • If “deployment” is good, you will plan for Production push

1 Comment