Skip to content

Commit

Permalink
CI: Explicitely list build and test tag filters in presubmit.yml
Browse files Browse the repository at this point in the history
Unfortunately, these flags are not accumulated, so we cannot rely on a base config
in a .bazelrc and have to repeat the flags from `linux-bindist` config.

See bazelbuild/bazel#7322
  • Loading branch information
avdv committed Oct 16, 2023
1 parent ed203d4 commit c9ce7d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ tasks:
build_flags:
- "--config=ci-common"
- "--config=linux-bindist"
- "--build_tag_filters=-dont_test_on_bazelci,-integration"
- "--build_tag_filters=-requires_nix,-requires_lz4,-requires_shellcheck,-requires_threaded_rts,-dont_test_with_bindist,-dont_test_on_bazelci,-integration"
build_targets:
- "//tests/..."
test_flags:
- "--config=ci-common"
- "--config=linux-bindist"
- "--test_tag_filters=-dont_test_on_bazelci,-integration"
- "--test_tag_filters=-requires_nix,-requires_lz4,-requires_shellcheck,-requires_threaded_rts,-dont_test_with_bindist,-dont_test_on_bazelci,-integration"
test_targets:
- "//tests/..."

0 comments on commit c9ce7d4

Please sign in to comment.