From 477d5f5d50089d31c42d922a861148fd5bf4d267 Mon Sep 17 00:00:00 2001 From: "data-plane-api(Azure Pipelines)" Date: Mon, 31 Jan 2022 18:50:31 +0000 Subject: [PATCH] bazel: update to v5.0.0 (#19706) * bazel: update to v5.0.0 * Updated envoy-build-tools dependency * Removed envoy_build_tools.patch * Fixed java runtime version flag * Fixed gcc test * Remove outdated java flags * Workaround attempt for test failures * Incorporate review comments Signed-off-by: Faseela K Mirrored from https://github.com/envoyproxy/envoy @ bbcd487bd178ef5254545941ac369d944da41913 --- test/build/BUILD | 2 ++ test/validate/BUILD | 2 ++ 2 files changed, 4 insertions(+) diff --git a/test/build/BUILD b/test/build/BUILD index affcc040..16956e8d 100644 --- a/test/build/BUILD +++ b/test/build/BUILD @@ -5,6 +5,8 @@ licenses(["notice"]) # Apache 2 api_cc_test( name = "build_test", srcs = ["build_test.cc"], + # Workaround for https://github.com/bazelbuild/bazel/issues/13819 + linkstatic = True, deps = [ "//envoy/api/v2:pkg_cc_proto", "//envoy/service/accesslog/v2:pkg_cc_proto", diff --git a/test/validate/BUILD b/test/validate/BUILD index 79b6d6d9..3ffe2ab3 100644 --- a/test/validate/BUILD +++ b/test/validate/BUILD @@ -5,6 +5,8 @@ licenses(["notice"]) # Apache 2 api_cc_test( name = "pgv_test", srcs = ["pgv_test.cc"], + # Workaround for https://github.com/bazelbuild/bazel/issues/13819 + linkstatic = True, deps = [ "@envoy_api//envoy/config/accesslog/v3:pkg_cc_proto", "@envoy_api//envoy/config/bootstrap/v3:pkg_cc_proto",