-
Improvement
-
Resolution: Fixed
-
Major
-
None
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