-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better bazel C++ iOS tests (with structured test results) (grpc#29354)
* introduce bazelrc for tests with resultstore-uploaded results * modernize bazel cpp ios tests * simplify bazel invocation in bazel_cpp_ios_tests * remove unused bazel core ios tests
- Loading branch information
1 parent
07a7542
commit c64d6f3
Showing
5 changed files
with
56 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
15 changes: 15 additions & 0 deletions
15
tools/remote_build/include/test_locally_with_resultstore_results.bazelrc
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Run tests locally, but configure bazel to upload | ||
# the results to resultstore UI. | ||
# Also easily extended to use remote cache for | ||
# locally run builds and tests (but not on by default for safety) | ||
|
||
import %workspace%/tools/remote_build/include/rbe_base_config.bazelrc | ||
|
||
# Disable uploading to build cache by default. This is to prevent | ||
# polluting the build cache with local build and test results. | ||
# When running on CI, we will override this setting along | ||
# with cache silo keys that prevent the build from being broken | ||
# by unintentional cache hits. | ||
build --remote_upload_local_results=false | ||
|
||
import %workspace%/tools/remote_build/include/test_config_common.bazelrc |