use of com.google.devtools.build.lib.actions.ActionExecutedEvent in project bazel by bazelbuild.
the class SkyframeActionExecutor method reportActionExecution.
private void reportActionExecution(Action action, ActionExecutionException exception, FileOutErr outErr) {
Path stdout = null;
Path stderr = null;
if (outErr.hasRecordedStdout()) {
stdout = outErr.getOutputPath();
}
if (outErr.hasRecordedStderr()) {
stderr = outErr.getErrorPath();
}
postEvent(new ActionExecutedEvent(action, exception, stdout, stderr));
}
Aggregations