Skip to content

Commit

Permalink
[bp/1.29] Only download go sdk when not using host sdk
Browse files Browse the repository at this point in the history
Cherry-pick of envoyproxy#32126

Signed-off-by: Jonh Wendell <[email protected]>
  • Loading branch information
jwendell committed Jul 1, 2024
1 parent 7ec45b6 commit ab1f765
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bazel/dependency_imports.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def envoy_dependency_imports(go_version = GO_VERSION, jq_version = JQ_VERSION, y
rules_foreign_cc_dependencies()
go_rules_dependencies()
go_register_toolchains(go_version)
envoy_download_go_sdks(go_version)
if go_version != "host":
envoy_download_go_sdks(go_version)
gazelle_dependencies(go_sdk = "go_sdk")
apple_rules_dependencies()
pip_dependencies()
Expand Down

0 comments on commit ab1f765

Please sign in to comment.