Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 002dea8

Browse files
authored
Unbreak the build on Darwin by pinning an older version of grpc. (#286)
1 parent 59a0081 commit 002dea8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

WORKSPACE

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,11 @@ http_archive(
4242
# gRPC
4343
http_archive(
4444
name = "com_github_grpc_grpc",
45-
strip_prefix = "grpc-master",
46-
urls = ["https://github.com/grpc/grpc/archive/master.tar.gz"],
45+
# TODO: Unpin grpc and go back to master when
46+
# https://github.com/grpc/grpc/pull/18082 is resolved.
47+
# (build is broken on darwin)
48+
strip_prefix = "grpc-b03e014ad82c39b7c91d794bc775c0d4ec187e1b",
49+
urls = ["https://github.com/grpc/grpc/archive/b03e014ad82c39b7c91d794bc775c0d4ec187e1b.tar.gz"],
4750
)
4851

4952
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")

0 commit comments

Comments
 (0)