21 lines
541 B
Text
21 lines
541 B
Text
import ../../.bazelrc
|
|
|
|
build --java_runtime_version=21
|
|
build --tool_java_runtime_version=21
|
|
|
|
test --test_output=errors
|
|
|
|
# Default to quiet mode for run commands
|
|
run --ui_event_filters=-info,-stdout,-stderr
|
|
run --noshow_progress
|
|
run --noannounce_rc
|
|
|
|
# Explicit quiet mode configuration (same as default)
|
|
run:quiet --ui_event_filters=-info,-stdout,-stderr
|
|
run:quiet --noshow_progress
|
|
run:quiet --noannounce_rc
|
|
|
|
# Loud mode configuration (override the quiet default)
|
|
run:loud --ui_event_filters=
|
|
run:loud --show_progress
|
|
run:loud --announce_rc
|