aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/buildeventstream
diff options
context:
space:
mode:
authorGravatar Klaus Aehlig <aehlig@google.com>2017-11-08 21:09:24 +0100
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2017-11-09 18:29:16 +0100
commit4193c0fb51a027f6cc143784f0b522842597103c (patch)
treed05726cd2246e574bbcc4e862edd0332cd4d079b /src/main/java/com/google/devtools/build/lib/buildeventstream
parent72292f9259cf7badf4c402da74672a25de8ec12d (diff)
BEP: also report the mnemonic of reported actions
Knowing the kind of action that was reported (and hence likely failed) helps users quickly understand what possibly went wrong. So report this information. Change-Id: Ie4869234df895f404ac5d2ff6f05026e4e82ef7e PiperOrigin-RevId: 175043006
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/buildeventstream')
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
index 6b15e27180..06e7deaa2b 100644
--- a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
+++ b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto
@@ -399,6 +399,9 @@ message NamedSetOfFiles {
message ActionExecuted {
bool success = 1;
+ // The mnemonic of the action that was executed
+ string type = 8;
+
// The exit code of the action, if it is available.
int32 exit_code = 2;