Skip to content

Commit 436b34b

Browse files
authored
bazel: add extensions config (#3548)
* add extensions config Signed-off-by: Yuchen Dai <[email protected]> * add missing WORKSPACE Signed-off-by: Yuchen Dai <[email protected]> * exclude extensions_build_config.bzl Signed-off-by: Yuchen Dai <[email protected]> * move extension and contrib to public visibility Signed-off-by: Yuchen Dai <[email protected]>
1 parent fdf359c commit 436b34b

File tree

5 files changed

+386
-4
lines changed

5 files changed

+386
-4
lines changed

WORKSPACE

+9-3
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ bind(
3838
# 2. Update .bazelversion, envoy.bazelrc and .bazelrc if needed.
3939
#
4040
# Note: this is needed by release builder to resolve envoy dep sha to tag.
41-
# Commit date: 2021-10-22
42-
ENVOY_SHA = "72c4d59aa39f0e0c7152b5fc15ac0af9d1cb1715"
41+
# Commit date: 2021-10-26
42+
ENVOY_SHA = "629ac3f987286427a1c467ff684ba9d68921a3d7"
4343

44-
ENVOY_SHA256 = "9725cb5c934ec73e8f0ae9d9aa7c4268f6f0516b46e1b399bdd5bd7f9aec4189"
44+
ENVOY_SHA256 = "4d22dbe5a7c230398cd712bfa21e6a7cd7ac7e3ac77e72a03e6c8225dc5fd9c9"
4545

4646
ENVOY_ORG = "envoyproxy"
4747

@@ -58,6 +58,12 @@ http_archive(
5858

5959
load("@envoy//bazel:api_binding.bzl", "envoy_api_binding")
6060

61+
local_repository(
62+
name = "envoy_build_config",
63+
# Relative paths are also supported.
64+
path = "bazel/extension_config",
65+
)
66+
6167
envoy_api_binding()
6268

6369
load("@envoy//bazel:api_repositories.bzl", "envoy_api_dependencies")

bazel/extension_config/BUILD

Whitespace-only changes.

bazel/extension_config/WORKSPACE

Whitespace-only changes.

0 commit comments

Comments
 (0)