Skip to content

Commit

Permalink
build: Fixed (?) Bazel rebuilds PITA
Browse files Browse the repository at this point in the history
  • Loading branch information
vorburger committed Mar 12, 2023
1 parent 47d3165 commit 1f63530
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ common --enable_bzlmod
# https://bazel.build/docs/user-manual#java_runtime_version
build --java_runtime_version=remotejdk_11

# https://github.com/bazelbuild/intellij/issues/1169
build --incompatible_strict_action_env
run --incompatible_strict_action_env

# https://bazel.build/reference/command-line-reference#flag--test_output
test --test_output=errors

# Quiet!
# common --noshow_progress
common --ui_event_filters=error,warning,-info,-debug,stdout,stderr
# FYI -info hides output of tools such as core_buf_proto_lint (TODO how-to show only that, if failure?)
common --ui_event_filters=error,warning,info,-debug,stdout,stderr
# FYI -info also hides :( output from tests and tools such as core_buf_proto_lint (TODO how-to show only that, if failure?)
# Beware, -stdout breaks IDE integrations!

0 comments on commit 1f63530

Please sign in to comment.