Skip to content

Commit

Permalink
Update grpc version in Bazel build to v1.41.0 (#109)
Browse files Browse the repository at this point in the history
- The Bazel-based unit tests fail with a compiler warning when
  building the version of boringssl bundled with grpc v1.40.0.
  Update the version of grpc used in the Bazel build (and with
  it the bundled version of boringssl) to work around the issue.

Signed-off-by: Derek G Foster <[email protected]>
  • Loading branch information
ffoulkes authored Sep 8, 2023
1 parent 039ac48 commit b0bafcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bazel/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def stratum_deps():
if "com_github_grpc_grpc" not in native.existing_rules():
http_archive(
name = "com_github_grpc_grpc",
urls = ["https://github.com/grpc/grpc/archive/v1.40.0.tar.gz"],
strip_prefix = "grpc-1.40.0",
sha256 = "13e7c6460cd979726e5b3b129bb01c34532f115883ac696a75eb7f1d6a9765ed",
urls = ["https://github.com/grpc/grpc/archive/v1.41.0.tar.gz"],
strip_prefix = "grpc-1.41.0",
sha256 = "e5fb30aae1fa1cffa4ce00aa0bbfab908c0b899fcf0bbc30e268367d660d8656",
)

if "com_google_googleapis" not in native.existing_rules():
Expand Down

0 comments on commit b0bafcd

Please sign in to comment.