Synchronize new proto changes.

This commit is contained in:
Google APIs 2017-05-25 09:01:42 -07:00
parent 4edfc0a5ab
commit fc87f04a33
2 changed files with 4 additions and 10 deletions

View file

@ -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;

View file

@ -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;
}