Skip to content

Commit

Permalink
Fix logging when merge is empty.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Aug 6, 2024
1 parent 741dab3 commit 656ca89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -428,13 +428,13 @@ private void perform(final Run<?, ?> run, final FilePath workspace, final TaskLi
var action = reporter.publishAction(getActualId(), getName(), getIcon(), aggregatedResult, run,
workspace, taskListener, getQualityGates(), getScm(),
getSourceCodeEncoding(), getSourceCodeRetention(), resultHandler, log);
logHandler.log(log);

if (!skipPublishingChecks) {
var checksPublisher = new CoverageChecksPublisher(action, aggregatedResult, getChecksName(), getChecksAnnotationScope());
checksPublisher.publishCoverageReport(taskListener);
}
}
logHandler.log(log);
}

private void resolveAbsolutePaths(final Node rootNode, final FilePath workspace, final Set<String> sources,
Expand Down

0 comments on commit 656ca89

Please sign in to comment.