1
0
Fork 0

Use --config=ci on bazel premerge bots

This fixes the broken premerge bots.

--config=ci implicitly implies all of the removed flags via .bazelrc, except --config=rbe which was removed.
This commit is contained in:
Arthur Eubanks 2022-08-31 10:05:28 -07:00 committed by Mikhail Goncharov
parent 1b58075c54
commit 33b26e751e

View file

@ -101,7 +101,7 @@ def bazel(modified_files: Set[str], force: bool = False) -> List:
'commands': [
'set -eu',
'cd utils/bazel',
'bazel query //... + @llvm-project//... | xargs bazel test --config=generic_clang --config=rbe --copt=-Werror --host_copt=-Werror --test_output=errors --test_tag_filters=-nobuildkite --build_tag_filters=-nobuildkite',
'bazel query //... + @llvm-project//... | xargs bazel test --config=ci',
],
'agents': agents,
'timeout_in_minutes': 120,