Skip to content

Commit 59e5fdd

Browse files
authored
ci: disable deprecated warnings for windows GHA builds (#14875)
1 parent b5414ca commit 59e5fdd

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

cmake/GoogleCloudCppCommonOptions.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ function (google_cloud_cpp_add_common_options target)
8080
return()
8181
endif ()
8282
target_compile_options(${target} PRIVATE "/W3")
83+
target_compile_options(${target} PRIVATE "/wd4996")
8384
if (GOOGLE_CLOUD_CPP_ENABLE_WERROR)
8485
target_compile_options(${target} PRIVATE "/WX")
8586
endif ()

google/cloud/bigtable/test_proxy/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ cc_library(
2222
testonly = True,
2323
srcs = ["cbt_test_proxy.cc"],
2424
hdrs = ["cbt_test_proxy.h"],
25-
copts = ["-Wno-deprecated-declarations"],
2625
deps = [
2726
"//:bigtable",
2827
"//protos:system_includes",

0 commit comments

Comments
 (0)