From c9454f40e91bef6187e618f4856ebea240985c81 Mon Sep 17 00:00:00 2001 From: Adam Cozzette Date: Wed, 28 Aug 2024 09:03:14 -0700 Subject: [PATCH] Remove `--copt="-Werror"` from `.bazelrc` (#18005) This appears to be causing a bunch of errors during our release process, but I don't think it's critical to have this flag in `.bazelrc`. We should still be able to get about the same test coverage since we also set `-Werror` in the `bazelrc` files in the `ci/` directory. --- .bazelrc | 3 --- 1 file changed, 3 deletions(-) diff --git a/.bazelrc b/.bazelrc index 8ca6e56dd812..65cc8c491e52 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,8 +1,5 @@ build --cxxopt=-std=c++17 --host_cxxopt=-std=c++17 -build --copt="-Werror" --copt="-Wno-sign-compare" --copt="-Wno-sign-conversion" --copt="-Wno-error=sign-conversion" --copt="-Wno-deprecated-declarations" - - build:dbg --compilation_mode=dbg build:opt --compilation_mode=opt