forked from google/llvm-bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicitly tag targets that don't build on Build Kite (google#49)
Some targets are tagged manual for other reasons and manual really just means "don't build this in wildcards", which is a human-focused distinction. For build bots, we can now use `bazel query` (which ignores "manual") piped to `bazel test` to build and test all targets in parallel (more important as we get more tests). Tested: Locally ran ```shell bazel query //... @llvm-project//... \ | xargs bazel test \ --config=rbe \ --test_output=errors \ --test_tag_filters=-nobuildkite \ --build_tag_filters=-nobuildkite ```
- Loading branch information
1 parent
b5b13aa
commit 849278b
Showing
2 changed files
with
20 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters