From f02992e5d5486eb72adba4f41fa0fe6fd47fd579 Mon Sep 17 00:00:00 2001 From: Yannic Date: Thu, 6 Feb 2020 12:36:00 +0100 Subject: [PATCH] protobuf: disable //:cc_proto_blacklist_test (#933) --- buildkite/pipelines/protobuf-postsubmit.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/buildkite/pipelines/protobuf-postsubmit.yml b/buildkite/pipelines/protobuf-postsubmit.yml index 8cfdd6c65e..b3cd5eae4b 100644 --- a/buildkite/pipelines/protobuf-postsubmit.yml +++ b/buildkite/pipelines/protobuf-postsubmit.yml @@ -3,9 +3,21 @@ platforms: ubuntu1604: test_targets: - "//:all" + # `cc_proto_blacklist_test` only works as `@com_google_protobuf//:cc_proto_blacklist_test`. + # https://github.com/bazelbuild/bazel/issues/10590 + - "-//:cc_proto_blacklist_test" + - "@com_google_protobuf//:cc_proto_blacklist_test" macos: test_targets: - "//:all" + # `cc_proto_blacklist_test` only works as `@com_google_protobuf//:cc_proto_blacklist_test`. + # https://github.com/bazelbuild/bazel/issues/10590 + - "-//:cc_proto_blacklist_test" + - "@com_google_protobuf//:cc_proto_blacklist_test" windows: test_targets: - "//:all" + # `cc_proto_blacklist_test` only works as `@com_google_protobuf//:cc_proto_blacklist_test`. + # https://github.com/bazelbuild/bazel/issues/10590 + - "-//:cc_proto_blacklist_test" + - "@com_google_protobuf//:cc_proto_blacklist_test"