Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions deps/rabbitmq_mqtt/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ rabbitmq_app(
"//deps/amqp10_common:erlang_app",
"//deps/rabbit:erlang_app",
"//deps/rabbit_common:erlang_app",
"@ra//:erlang_app",
"@ranch//:erlang_app",
],
)
Expand Down Expand Up @@ -178,16 +177,6 @@ rabbitmq_integration_suite(
name = "config_schema_SUITE",
)

rabbitmq_integration_suite(
name = "ff_SUITE",
additional_beam = [
":test_util_beam",
],
runtime_deps = [
"@emqtt//:erlang_app",
],
)

rabbitmq_integration_suite(
name = "java_SUITE",
additional_beam = [
Expand All @@ -197,11 +186,6 @@ rabbitmq_integration_suite(
sharding_method = "group",
)

rabbitmq_suite(
name = "mqtt_machine_SUITE",
size = "small",
)

rabbitmq_suite(
name = "processor_SUITE",
size = "small",
Expand Down
2 changes: 1 addition & 1 deletion deps/rabbitmq_mqtt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ BUILD_WITHOUT_QUIC=1
export BUILD_WITHOUT_QUIC

LOCAL_DEPS = ssl
DEPS = ranch rabbit_common rabbit ra amqp10_common
DEPS = ranch rabbit_common rabbit amqp10_common
TEST_DEPS = emqtt ct_helper rabbitmq_ct_helpers rabbitmq_ct_client_helpers rabbitmq_management rabbitmq_web_mqtt amqp_client rabbitmq_consistent_hash_exchange rabbitmq_amqp_client rabbitmq_stomp rabbitmq_stream

PLT_APPS += rabbitmqctl elixir
Expand Down
39 changes: 3 additions & 36 deletions deps/rabbitmq_mqtt/app.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,9 @@ def all_beam_files(name = "all_beam_files"):
erlang_bytecode(
name = "other_beam",
srcs = [
"src/Elixir.RabbitMQ.CLI.Ctl.Commands.DecommissionMqttNodeCommand.erl",
"src/Elixir.RabbitMQ.CLI.Ctl.Commands.ListMqttConnectionsCommand.erl",
"src/mc_mqtt.erl",
"src/mqtt_machine.erl",
"src/mqtt_machine_v0.erl",
"src/mqtt_node.erl",
"src/rabbit_mqtt.erl",
"src/rabbit_mqtt_collector.erl",
"src/rabbit_mqtt_confirms.erl",
"src/rabbit_mqtt_ff.erl",
"src/rabbit_mqtt_internal_event_handler.erl",
Expand All @@ -46,7 +41,7 @@ def all_beam_files(name = "all_beam_files"):
beam = [":behaviours"],
dest = "ebin",
erlc_opts = "//:erlc_opts",
deps = ["//deps/amqp10_common:erlang_app", "//deps/rabbit:erlang_app", "//deps/rabbit_common:erlang_app", "//deps/rabbitmq_cli:erlang_app", "@ra//:erlang_app", "@ranch//:erlang_app"],
deps = ["//deps/amqp10_common:erlang_app", "//deps/rabbit:erlang_app", "//deps/rabbit_common:erlang_app", "//deps/rabbitmq_cli:erlang_app", "@ranch//:erlang_app"],
)

def all_test_beam_files(name = "all_test_beam_files"):
Expand All @@ -68,14 +63,9 @@ def all_test_beam_files(name = "all_test_beam_files"):
name = "test_other_beam",
testonly = True,
srcs = [
"src/Elixir.RabbitMQ.CLI.Ctl.Commands.DecommissionMqttNodeCommand.erl",
"src/Elixir.RabbitMQ.CLI.Ctl.Commands.ListMqttConnectionsCommand.erl",
"src/mc_mqtt.erl",
"src/mqtt_machine.erl",
"src/mqtt_machine_v0.erl",
"src/mqtt_node.erl",
"src/rabbit_mqtt.erl",
"src/rabbit_mqtt_collector.erl",
"src/rabbit_mqtt_confirms.erl",
"src/rabbit_mqtt_ff.erl",
"src/rabbit_mqtt_internal_event_handler.erl",
Expand All @@ -102,7 +92,6 @@ def all_test_beam_files(name = "all_test_beam_files"):
"//deps/rabbit:erlang_app",
"//deps/rabbit_common:erlang_app",
"//deps/rabbitmq_cli:erlang_app",
"@ra//:erlang_app",
"@ranch//:erlang_app",
],
)
Expand All @@ -127,14 +116,9 @@ def all_srcs(name = "all_srcs"):
filegroup(
name = "srcs",
srcs = [
"src/Elixir.RabbitMQ.CLI.Ctl.Commands.DecommissionMqttNodeCommand.erl",
"src/Elixir.RabbitMQ.CLI.Ctl.Commands.ListMqttConnectionsCommand.erl",
"src/mc_mqtt.erl",
"src/mqtt_machine.erl",
"src/mqtt_machine_v0.erl",
"src/mqtt_node.erl",
"src/rabbit_mqtt.erl",
"src/rabbit_mqtt_collector.erl",
"src/rabbit_mqtt_confirms.erl",
"src/rabbit_mqtt_ff.erl",
"src/rabbit_mqtt_internal_event_handler.erl",
Expand All @@ -156,8 +140,6 @@ def all_srcs(name = "all_srcs"):
filegroup(
name = "public_hdrs",
srcs = [
"include/mqtt_machine.hrl",
"include/mqtt_machine_v0.hrl",
"include/rabbit_mqtt.hrl",
"include/rabbit_mqtt_packet.hrl",
],
Expand Down Expand Up @@ -213,15 +195,7 @@ def test_suite_beam_files(name = "test_suite_beam_files"):
app_name = "rabbitmq_mqtt",
erlc_opts = "//:test_erlc_opts",
)
erlang_bytecode(
name = "mqtt_machine_SUITE_beam_files",
testonly = True,
srcs = ["test/mqtt_machine_SUITE.erl"],
outs = ["test/mqtt_machine_SUITE.beam"],
hdrs = ["include/mqtt_machine.hrl"],
app_name = "rabbitmq_mqtt",
erlc_opts = "//:test_erlc_opts",
)

erlang_bytecode(
name = "processor_SUITE_beam_files",
testonly = True,
Expand Down Expand Up @@ -280,14 +254,7 @@ def test_suite_beam_files(name = "test_suite_beam_files"):
app_name = "rabbitmq_mqtt",
erlc_opts = "//:test_erlc_opts",
)
erlang_bytecode(
name = "ff_SUITE_beam_files",
testonly = True,
srcs = ["test/ff_SUITE.erl"],
outs = ["test/ff_SUITE.beam"],
app_name = "rabbitmq_mqtt",
erlc_opts = "//:test_erlc_opts",
)

erlang_bytecode(
name = "shared_SUITE_beam_files",
testonly = True,
Expand Down
25 changes: 0 additions & 25 deletions deps/rabbitmq_mqtt/include/mqtt_machine.hrl

This file was deleted.

8 changes: 0 additions & 8 deletions deps/rabbitmq_mqtt/include/mqtt_machine_v0.hrl

This file was deleted.

This file was deleted.

Loading