Navigation Menu

Skip to content

Commit

Permalink
JENKINS-11013 NOT_BUILT & other build status are reported inconsistently
Browse files Browse the repository at this point in the history
The parent matrix build console output does not record the build status for
each job. That is useful to get a quick feel for the status of each job and
the order of execution/completion.

Originally-Committed-As: fd9d680c7451457dbd26b32e52aef7bc0bd37047
  • Loading branch information
oldelvet authored and kohsuke committed Sep 23, 2011
1 parent 560968d commit 2ecdf87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/src/main/java/hudson/matrix/MatrixBuild.java
Expand Up @@ -287,6 +287,7 @@ protected Result doRun(BuildListener listener) throws Exception {
if(p.isRunSequentially())
scheduleConfigurationBuild(logger, c);
Result buildResult = waitForCompletion(listener, c);
logger.println(Messages.MatrixBuild_Completed(c.getDisplayName(), buildResult));
r = r.combine(buildResult);
}

Expand Down
1 change: 1 addition & 0 deletions core/src/main/resources/hudson/matrix/Messages.properties
Expand Up @@ -27,6 +27,7 @@ MatrixBuild.Triggering=Triggering {0}
MatrixBuild.AppearsCancelled={0} appears to be cancelled
MatrixBuild.Cancelled=Cancelled {0}
MatrixBuild.Interrupting=Interrupting {0}
MatrixBuild.Completed={0} completed with result {1}

MatrixConfiguration.Pronoun=Configuration

Expand Down

0 comments on commit 2ecdf87

Please sign in to comment.