[ 
https://issues.jenkins-ci.org/browse/JENKINS-12216?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=160221#comment-160221
 ] 

didi357 commented on JENKINS-12216:
-----------------------------------

I have fixed this issue and sent a pull request in the rake-plugin project on 
Github.
Pull request can be found here: https://github.com/jenkinsci/rake-plugin/pull/9

Regards.
                
> Rake build step is not available in actions from promoted_build plugin
> ----------------------------------------------------------------------
>
>                 Key: JENKINS-12216
>                 URL: https://issues.jenkins-ci.org/browse/JENKINS-12216
>             Project: Jenkins
>          Issue Type: Bug
>          Components: rake
>    Affects Versions: current
>         Environment: Jenkins 1.420 & 1.444
> Rake plugin 1.7.7
> Promoted build plugin 2.4
>            Reporter: Kristof Willaert
>            Assignee: didi357
>            Priority: Minor
>
> With the Rake plugin installed, a rake build step appears in the list of 
> build steps. However, when also using the promoted builds plugin, the list of
> actions to be executed with a promoted build does not contain the rake build 
> step.
> Upon investigation, the list of possible actions in the promoted builds 
> plugin gets compiled using the following condition:
> {code}
> BuildStepDescriptor bsd = (BuildStepDescriptor) d;
>                 if(bsd.isApplicable(PromotionProcess.class))
>                     list.add(d);
> {code}
> (in 
> promoted-builds-plugin/src/main/java/hudson/plugins/promoted_builds/PromotionProcess.java)
> I guess the reason why the Rake builder does not appear in the list of 
> actions, is because the RakeDescriptor class
> extends the Descriptor<Builder> class instead of the 
> BuildStepDescriptor<Builder> class:
> {code}
> public static final class RakeDescriptor extends Descriptor<Builder> {
> {code}
> (in rake-plugin/src/main/java/hudson/plugins/rake/Rake.java)
> My guess is that adding an 
> {code}
> import hudson.tasks.BuildStepDescriptor;
> {code}
> and changing the RakeDescriptor class to:
> {code}
> public static final class RakeDescriptor extends BuildStepDescriptor<Builder> 
> {
> {code}
> might fix this. 
> I have to say I am a complete Java newbie, and the Jenkins code is unknown to 
> me, so
> I might be way off.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to