-
Bug
-
Resolution: Duplicate
-
Major
-
None
We're currently in a setup where we have mixed jobs. Some are "old" freestyle or maven jobs and some of them are "new" pipeline jobs.
In the delivery pipeline, the "old" jobs show up correctly but the "new" pipeline jobs are missing.
- duplicates
-
JENKINS-34040 Add support for Pipeline plugin in the Delivery Pipeline plugin
-
- Closed
-
The problem seems to be that the delivery pipeline code works with hudson.model.AbstractProject types which pipeline jobs don't implement. Pipeline jobs are of type org.jenkinsci.plugins.workflow.job.Workflow job from the workflow job pluginMaybe the delivery pipeline code should work one interface up at the hudson.model.Job level.
Will probably involve significant refactoring of the delivery pipeline plugin code. JENKINS-29913 provides some insight.