From d503565d17ba42327a4df16442f1e2af386a1652 Mon Sep 17 00:00:00 2001 From: Yun Peng Date: Fri, 11 Jun 2021 16:25:26 +0200 Subject: [PATCH] Disable fuzz coverage test on Bazel CI https://github.com/envoyproxy/envoy/issues/16542 has been keep Envoy red on Bazel CI for a long time, it doesn't make sense to keep a failing test if it's not going to be fixed. Signed-off-by: Yun Peng --- .bazelci/presubmit.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index e11da6611401..75461d072394 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -24,14 +24,15 @@ tasks: test_flags: - "--config=coverage" - "--config=clang" - fuzz_coverage: - name: "Fuzz-Coverage" - platform: ubuntu1804 - shell_commands: - - "bazel/setup_clang.sh /usr/lib/llvm-10" - test_targets: - - "//test/server:server_fuzz_test" - test_flags: - - "--config=fuzz-coverage" - - "--config=coverage" - - "--config=clang" +# Re-enable after fixing https://github.com/envoyproxy/envoy/issues/16542 +# fuzz_coverage: +# name: "Fuzz-Coverage" +# platform: ubuntu1804 +# shell_commands: +# - "bazel/setup_clang.sh /usr/lib/llvm-10" +# test_targets: +# - "//test/server:server_fuzz_test" +# test_flags: +# - "--config=fuzz-coverage" +# - "--config=coverage" +# - "--config=clang"