Master CI/CD Concepts & Pipeline Building
Jenkins is an open-source automation server that helps teams build, test, and deploy applications continuously. It's the heart of CI/CD (Continuous Integration/Continuous Deployment) pipelines.
A pipeline is a series of automated steps that code goes through from development to production. It typically includes stages like: Build โ Test โ Deploy โ Monitor.
Job: A runnable task in Jenkins
Build: One execution of a job
Workspace: Directory where builds happen
Node: Machine where Jenkins runs jobs
Plugin: Extension that adds functionality
A text file that defines your pipeline as code. It can be written in Declarative or Scripted syntax and is stored alongside your application code.
Drag stages from the left panel to create your pipeline!
Drop pipeline stages here to build your workflow
Experience what a Jenkins build looks like!