
Introduction to Jenkins
Jenkins is an open source automation server/Platform that accelerate software development. It orchestrate the entire software delivery pipeline from building
and testing
to deployment
.

How Jenkins works?

Jenkins Core Concepts:
- Jobs: Define specific tasks such as compiling code, running tests, or deploying to an environment.
- Build: Each execution of a job, with jenkins maintaining a history fro troubleshooting.
- Freestyle Project: The default project type, offering flexible job definitions
- Pipelines: Chain jobs together to automate tasks from development to deployment.
- Stages: Group related jobs intro phases like “Build”, “Test”, and “Deploy” for clarity.
- Node: Machine where Jenkins executes jobs, with a single controller or multiple agents.
- Plugins: Extend Jenkins’s functionality, integrating with various tools and technologies.
Pro’s and Con’s
Pro’s:
- Open-Source and Free