meta data for this page
  •  

This is an old revision of the document!


Pipeline

  • replay feature let to run job with modified by hand Jenkinsfile

Jenkinsfile

Scripted pipeline https://jenkins.io/doc/book/pipeline/syntax/#scripted-pipeline

jenkinsfile
node {

Declarative Pipeline

Jenkinsfile
pipeline {
    agent any
}

Workspace

/workspace/project@script is checked out on Master only to get Jenkinsfile - it can be safely deleted /workspace/project@2 - folder where build is performed (can be on slave) /workspace/project@tmp - ?