Jenkins: Declarative Pipelines & Jenkinsfile Jenkins is the most widely used open-source CI/CD server. Pipelines are defined as code in a Jenkinsfile (checked into the repo) using either Declarative or Scripted syntax. D…
ReadJenkins: Agents, Credentials & Docker Agents // Top-level agent pipeline { agent { label 'linux && docker' } // run on agent with both labels } // Per-stage agent (overrides top-level) stage('Build') { agent { label 'nod…
ReadJenkins: Shared Libraries, Plugins & Best Practices Shared Libraries Shared libraries allow you to extract common pipeline logic into reusable Groovy code stored in a separate repo. Import with @Library annotation. // In…
ReadSave this stack to your personal DevRecall — add your own notes, track what you're learning, and share what you know with the community.
Get started — free forever