-
Type:
Improvement
-
Status: Resolved (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Component/s: instant-messaging-plugin
-
Labels:None
-
Similar Issues:
Seems like its only using the name of the matrix build/configuration when notifying:
Starting build 226 for job jdk=1.6,label=ubuntu (previous build: STILL FAILING -- last SUCCESS #223 14 hr ago)
Not very helpful for identifying which project this build is for...
Stuff like this:
final String message = "Build " + build.getProject().getName() +
Should be:
final String message = "Build " + build.getProject().getFullDisplayName() +
- is duplicated by
-
JENKINS-7730 Useless message when running builds with matrix configuration
-
- Resolved
-
kutzi:
1. Create a multi-configuration job 'foo'
2. Add a user-defined matrix axis 'jdk' with values e.g. '1.5' and '1.6'
3. Add a user-defined matrix axis 'label' with values e.g. 'redhat' and 'ubuntu'
4. Configure IM plugin to print the output from the request
It will show your project as:
Expected would be something like:
(if using 'getFullName()' rather than 'getFullDisplayName()', I don't know what the latter looks like)
This is also relevant for projects whose parent ItemGroup is not Jenkins.getInstance(), e.g. when using the Cloudbees Folder plugin.