You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (rootProject.hasProperty('failOnWarnings') && rootProject.failOnWarnings.toBoolean()) {
it.options.compilerArgs += ["-Werror"]
}
We should observe the property for Android as well. This will help keep our builds clean and prevent things like #6866.
Android also has a fair number of linter warnings. It would be nice if we got to a place where they were covered by -PfailOnWarnings=true as well, but that could happen later (in which case we should create a new issue to track it).
The text was updated successfully, but these errors were encountered:
Multiple of our CIs currently run with
-PfailOnWarnings=true
. This is observed by our mainbuild.gradle
to enable-Werror
:grpc-java/build.gradle
Lines 39 to 41 in 9dec06c
We should observe the property for Android as well. This will help keep our builds clean and prevent things like #6866.
Android also has a fair number of linter warnings. It would be nice if we got to a place where they were covered by
-PfailOnWarnings=true
as well, but that could happen later (in which case we should create a new issue to track it).The text was updated successfully, but these errors were encountered: