ghale / gradle-jenkins-plugin

Gradle plugin to programmatically configure Jenkins jobs.
123 stars 42 forks source link

Should support creating a Pipeline Job #85

Closed gezerk closed 7 years ago

gezerk commented 7 years ago

The plugin should support creating a Jenkins Pipeline Job using Job DSL.

Job DSL version 1.53 supports creating Pipeline jobs.

gezerk commented 7 years ago

Not an issue, a pipeline job can be created with: type 'Workflow' dsl { description 'Jenkins job to verify correct tools are configured' definition { cpsScm { scm { git { remote { url 'ssh://git@some.repo.com/tools.git' } } } } } }