We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I have to list all the external dependencies of a bazel built project (envoy), with their name, version and license(s).
It seems rules_license would help me in this task, but I don't understand how to use it (I am new to bazel), do you have an example ?
rules_license
Regarding my envoy specific use case, it seems all the required information is available to bazel: envoy/bazel/repository_locations.bzl
envoy
I have a bazel build command used to produce an envoy static binary with many 'filters' and 'options':
bazel
bazel \ build \ --define google_grpc=disabled \ --@envoy//bazel:http3=False \ --@envoy//source/extensions/wasm_runtime/v8:enabled=false \ [...] @envoy//source/exe:envoy-static
The text was updated successfully, but these errors were encountered:
@aallrd envoy has a bazel target that produces a json representation of the dependencies including license info
bazel build //bazel:all_repository_locations
Sorry, something went wrong.
No branches or pull requests
Hello,
I have to list all the external dependencies of a bazel built project (envoy), with their name, version and license(s).
It seems
rules_license
would help me in this task, but I don't understand how to use it (I am new to bazel), do you have an example ?Regarding my
envoy
specific use case, it seems all the required information is available to bazel: envoy/bazel/repository_locations.bzlI have a
bazel
build command used to produce an envoy static binary with many 'filters' and 'options':The text was updated successfully, but these errors were encountered: