Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.bazelrc: Move import of user.bazelrc to bottom #8935

Merged
merged 1 commit into from
Dec 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# The ci.bazelrc is an untracked file that can be generated by hack/dockerized or automated/test.sh scripts as part of CI
try-import ci.bazelrc
try-import .bazeldnf/sandbox.bazelrc
try-import user.bazelrc

# Set common values for all builds (run, test and coverage inherit from build)
build --stamp --workspace_status_command=./hack/print-workspace-status.sh --host_force_python=PY3
Expand All @@ -26,3 +25,6 @@ test --action_env=GO_TEST_WRAP=0

test --test_tag_filters=-cov
coverage --test_tag_filters=-nocov

# Import user settings which may override the defaults
try-import user.bazelrc