diff options
| author | Philip Kuryloski <kuryloskip@vmware.com> | 2021-04-06 16:15:53 +0200 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2021-04-08 12:02:54 +0300 |
| commit | cfd7a3ed34a0bdd79e112c62733ea3c17d2a73f7 (patch) | |
| tree | e858939ceea557670d4e178cb5bbcad0891a92b3 | |
| parent | be7d9d5a89723e5a918dd105b34eeb0a8d0bf94f (diff) | |
| download | rabbitmq-server-git-cfd7a3ed34a0bdd79e112c62733ea3c17d2a73f7.tar.gz | |
Fix bazel rbe for amqp10_client system_SUITE
| -rw-r--r-- | deps/amqp10_client/BUILD.bazel | 13 | ||||
| -rw-r--r-- | deps/amqp10_client/activemq.bzl | 4 |
2 files changed, 11 insertions, 6 deletions
diff --git a/deps/amqp10_client/BUILD.bazel b/deps/amqp10_client/BUILD.bazel index 97dc20a05a..132d7b67cf 100644 --- a/deps/amqp10_client/BUILD.bazel +++ b/deps/amqp10_client/BUILD.bazel @@ -77,7 +77,7 @@ rabbitmq_run( ) ct_suite( - size = "large", + size = "medium", additional_hdrs = [ "src/amqp10_client.hrl", ], @@ -86,16 +86,21 @@ ct_suite( "test/mock_server.erl", ], data = [ - "@activemq//:bin_dir", + "@activemq//:exec_dir", "@rabbitmq_ct_helpers//tools/tls-certs:Makefile", "@rabbitmq_ct_helpers//tools/tls-certs:openssl.cnf.in", ], erlc_opts = TEST_ERLC_OPTS + [ "-I deps/amqp10_client", ], + groups = [ + "rabbitmq", + "rabbitmq_strict", + "activemq", + "activemq_no_anon", + "mock", + ], suite_name = "system_SUITE", - # does not pass remotely. marking exclusive until we have logs from remote runs - tags = ["exclusive"], test_env = { "RABBITMQ_CT_SKIP_AS_ERROR": "true", "RABBITMQ_RUN": "$TEST_SRCDIR/$TEST_WORKSPACE/deps/amqp10_client/rabbitmq-for-tests-run", diff --git a/deps/amqp10_client/activemq.bzl b/deps/amqp10_client/activemq.bzl index 7da4a4850e..7ad2f5cb4d 100644 --- a/deps/amqp10_client/activemq.bzl +++ b/deps/amqp10_client/activemq.bzl @@ -11,8 +11,8 @@ def activemq_archive(): sha256 = SHA_256, strip_prefix = "apache-activemq-{}".format(ACTIVEMQ_VERSION), build_file_content = """filegroup( - name = "bin_dir", - srcs = glob(["bin/**/*"]), + name = "exec_dir", + srcs = glob(["bin/**/*", "lib/**/*", "conf/**/*", "activemq-all-*.jar"]), visibility = ["//visibility:public"], ) """, |
