Slide 26
Slide 26 text
FREESTYLE JOB Job DSL
def gitUrl = 'git://github.com/jenkinsci/job-dsl-plugin.git’
def branches = ['master','dev','hotfix']
branches.each { branch ->
job(“demo-${branch}") {
scm {
git(gitUrl, branch)
}
}
}
Example: Static Branches