From f78843615d9c2fd9b01627b83f4ee56972935c81 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Thu, 19 Oct 2017 22:14:16 +0200 Subject: BEP: correctly report the cause of unbuilt targets if --noanalyze is given If bazel is asked to only load target, but not perform an analysis phase, correctly report this as the cause why the obtained targets wer never configured. Change-Id: Ib630a6dc1b955b810a6cc40254c0ae746e2eca1e PiperOrigin-RevId: 172787777 --- .../devtools/build/lib/buildeventstream/proto/build_event_stream.proto | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto') 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 8a04efcc98..7b7390895e 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 @@ -219,6 +219,9 @@ message Aborted { // The user requested the build to be aborted (e.g., by hitting Ctl-C). USER_INTERRUPTED = 1; + // The user requested that no analysis be performed. + NO_ANALYZE = 8; + // The build or target was aborted as a timeout was exceeded. TIME_OUT = 2; -- cgit v1.2.3