Jenkins Job-DSL is a Jenkins plugin which enables the creation of Jenkins Jobs using Groovy scripts.
I am trying to create a multibranchPipelineJob in jobDSL, however the Jenkinsfile is at an alternative location to the default. …
jenkins jenkins-pipeline jenkins-job-dsl multibranch-pipelineI have a jenkins file as below pipelineJob('My pipeline job'){ displayName('display name') logRotator { numToKeep(10) daysToKeep(30) artifactDaysToKeep(7) artifactNumToKeep(1) } definition{ …
jenkins jenkins-plugins jenkins-pipeline devops jenkins-job-dslUsing the job-dsl-plugin I am attempting to script the configuration of a fair number of Jenkins jobs which have previously …
groovy jenkins jenkins-job-dslI'm trying to put jobs inside a folder using jenkins DSL script Now i create a listView and i put …
jenkins groovy jenkins-pipeline jenkins-job-dslCould somebody give me a useful link, where I can find information about converting the complex xml configuration for Jenkins …
jenkins groovy jenkins-job-dslHere is my job DSL which creates pipelinejob in which script is taken from scm itself. pipelineJob ("${jobName}_deploy") { description("…
jenkins jenkins-pipeline jenkins-job-dslI'm writing a job-dsl seed job. The seed job needs to be able to generate from either github.com or …
jenkins-job-dslI am very new to Jenkins and Job DSL plugin. After a little research, I found how to create a …
jenkins jenkins-plugins jenkins-job-dslI am creating a jenkins pipeline job to seed jobs using the jenkins job DSL plugin. How do I get …
jenkins jenkins-pipeline devops jenkins-job-dslI'm using a Freestyle project / job with a Process Job DSLs build step as provided by the Jenkins Job DSL …
groovy jenkins jenkins-job-dsl