-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
tools: not warning about deprecated declarations #19468
Conversation
Signed-off-by: Alyssa Wilk <[email protected]>
.bazelrc
Outdated
@@ -41,6 +41,7 @@ build --action_env=CC | |||
build --action_env=CXX | |||
build --action_env=LLVM_CONFIG | |||
build --action_env=PATH | |||
build --copt=-Wno-deprecated-declarations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this need to be in build:linux
block above to not break windows.
if only we could find a solution to bazelbuild/bazel#7157 - we could really clean up ci logs |
Signed-off-by: Alyssa Wilk <[email protected]>
oh thanks for the link @phlax - I'll ping internally and see if I can get any traction. |
lizan anything else you'd like to see here? |
- syncing `.bazelrc` from Envoy (envoyproxy/envoy#19468). - no changes in `.bazelversion`, `run_envoy_docker.sh`, `gen_compilation_database.py`. Signed-off-by: Jakub Sobon <[email protected]>
- syncing `.bazelrc` from Envoy (envoyproxy/envoy#19468). - no changes in `.bazelversion`, `run_envoy_docker.sh`, `gen_compilation_database.py`. Signed-off-by: Jakub Sobon <[email protected]>
Also removing a couple of unnecessary validate.proto files. This removes several thousands of lines worth of warnings from our build logs. Signed-off-by: Alyssa Wilk <[email protected]> Signed-off-by: Josh Perry <[email protected]>
…me as deprecated (#20896) Commit Message: Prevent further in-repo uses of Stats::ScopePtr with a lint error. Attempt to discourage out-of-repo uses of Stats::ScopePtr with a deprecated flag, though that doesn't seem to cause any warning in our build or clang-tidy when I change a reference in the code. See #19468 for the change to suppress deprecation warnings. Additional Description: Risk Level: low Testing: //test/common/stats/... Docs Changes: n/a Release Notes: n/a Platform Specific Features: n/a Signed-off-by: Joshua Marantz <[email protected]>
…me as deprecated (envoyproxy#20896) Commit Message: Prevent further in-repo uses of Stats::ScopePtr with a lint error. Attempt to discourage out-of-repo uses of Stats::ScopePtr with a deprecated flag, though that doesn't seem to cause any warning in our build or clang-tidy when I change a reference in the code. See envoyproxy#19468 for the change to suppress deprecation warnings. Additional Description: Risk Level: low Testing: //test/common/stats/... Docs Changes: n/a Release Notes: n/a Platform Specific Features: n/a Signed-off-by: Joshua Marantz <[email protected]>
Also removing a couple of unnecessary validate.proto files.
This removes several thousands of lines worth of warnings from our build logs.