Skip to content

Commit 434f122

Browse files
authored
[envoy] Update internal WORKSPACE file (#14277)
envoyproxy/envoy#41894 updated Envoy's WORKSPACE file, which caused the following oss-fuzz build error: ``` ERROR: Failed to load Starlark extension '@@bazel_features_version//:version.bzl'. Cycle in the workspace file detected. This indicates that a repository is used prior to being defined. The following chain of repository dependencies lead to the missing definition. - @@bazel_features_version This could either mean you have to add the '@@bazel_features_version' repository with a statement like `http_archive` in your WORKSPACE file (note that transitive dependencies are not added automatically), or move an existing definition earlier in your WORKSPACE file. ERROR: Error computing the main repository mapping: cycles detected during computation of main repo mapping Computing main repo mapping: ERROR:__main__:Building fuzzers failed. ``` This fix updates the WORKSPACE files, as is done in envoyproxy/envoy#41894
1 parent 615d104 commit 434f122

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

projects/envoy/WORKSPACE

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ load("//bazel:repositories.bzl", "envoy_dependencies")
1212

1313
envoy_dependencies()
1414

15+
load("//bazel:bazel_deps.bzl", "envoy_bazel_dependencies")
16+
17+
envoy_bazel_dependencies()
18+
1519
load("//bazel:repositories_extra.bzl", "envoy_dependencies_extra")
1620

1721
envoy_dependencies_extra(ignore_root_user_error=True)

0 commit comments

Comments
 (0)