ikedam commented on New Feature JENKINS-27317

Let me know followings:

  • versions of your Jenkins, matrix project plugin, and groovy postbuild plugin.
  • What happens (what texts will be added to each builds) with a following script?:
    import hudson.matrix.MatrixBuild;
    import hudson.matrix.MatrixRun;
    
    if (manager.buildIsA(MatrixBuild.class))
    {
      manager.addShortText('parent');
    }
    else if (manager.buildIsA(MatrixRun.class))
    {
      manager.addShortText('child');
    }
    else
    {
      manager.addShortText('unknown');
    }
  • Would you attach the project configuration? That is located at ${JENKINS_HOME}/jobs/(project name)/config.xml. You may create a new project reproducing the problem.
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to