From ed4849810292e5fb3c844992133523f01a4ad420 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Thu, 22 Nov 2018 13:46:10 +0100 Subject: Add a message field to ExecuteResponse. (#36) This field may be used by a remote builder to inject additional lines of text into the output of the build client. Buildbarn may use this to print links to Buildbarn Browser, so that users can inspect build failures in more detail. --- build/bazel/remote/execution/v2/remote_execution.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/bazel/remote/execution/v2/remote_execution.proto b/build/bazel/remote/execution/v2/remote_execution.proto index a60fd1a..f9c23b3 100644 --- a/build/bazel/remote/execution/v2/remote_execution.proto +++ b/build/bazel/remote/execution/v2/remote_execution.proto @@ -1027,6 +1027,10 @@ message ExecuteResponse { // phase. The keys SHOULD be human readable so that a client can display them // to a user. map server_logs = 4; + + // Freeform informational message with details on the execution of the action + // that may be displayed to the user upon failure or when requested explicitly. + string message = 5; } // Metadata about an ongoing -- cgit v1.2.3