From fc87f04a33aa87f06fa8857411957bea019d4867 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Thu, 25 May 2017 09:01:42 -0700 Subject: [PATCH] Synchronize new proto changes. --- google/devtools/build/v1/build_events.proto | 10 ---------- google/devtools/build/v1/build_status.proto | 4 ++++ 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/google/devtools/build/v1/build_events.proto b/google/devtools/build/v1/build_events.proto index e745aee828..4d54b23522 100644 --- a/google/devtools/build/v1/build_events.proto +++ b/google/devtools/build/v1/build_events.proto @@ -43,14 +43,6 @@ message BuildEvent { // Notification that an invocation attempt has finished. message InvocationAttemptFinished { - // The status of the build request. - // If OK, the build request was run, though this does not mean the - // requested build tool succeeded. "exit_code" will be set to the - // exit code of the build tool. - // If not OK, the build request was not successfully executed. - // "exit_code" will not be set. - google.rpc.Status status = 1; - // The exit code of the build tool. google.protobuf.Int32Value exit_code = 2; @@ -172,8 +164,6 @@ message StreamId { DEPRECATED = 4; } - int64 project_number = 5; - // The id of a Build message. string build_id = 1; diff --git a/google/devtools/build/v1/build_status.proto b/google/devtools/build/v1/build_status.proto index c1f05a53e9..f88296c9cd 100644 --- a/google/devtools/build/v1/build_status.proto +++ b/google/devtools/build/v1/build_status.proto @@ -17,6 +17,7 @@ syntax = "proto3"; package google.devtools.build.v1; import "google/api/annotations.proto"; +import "google/protobuf/any.proto"; option cc_enable_arenas = true; option go_package = "google.golang.org/genproto/googleapis/devtools/build/v1;build"; @@ -59,4 +60,7 @@ message BuildStatus { // The end result. Result result = 1; + + // Fine-grained diagnostic information to complement the status. + google.protobuf.Any details = 2; }