Merge pull request #7937 from rabbitmq/fixup-6466

Use `additional_beam instead` of `additional_srcs`
This commit is contained in:
Rin Kuryloski 2023-04-19 12:16:40 +02:00 committed by GitHub
commit b71d19d014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -1112,8 +1112,8 @@ rabbitmq_integration_suite(
rabbitmq_integration_suite(
name = "runtime_parameters_SUITE",
size = "small",
additional_srcs = [
"test/dummy_runtime_parameters.erl",
additional_beam = [
"test/dummy_runtime_parameters.beam",
],
)

7
deps/rabbit/app.bzl vendored
View File

@ -1207,3 +1207,10 @@ def test_suite_beam_files(name = "test_suite_beam_files"):
erlc_opts = "//:test_erlc_opts",
deps = ["//deps/amqp_client:erlang_app"],
)
erlang_bytecode(
name = "runtime_parameters_SUITE_beam_files",
testonly = True,
srcs = ["test/runtime_parameters_SUITE.erl"],
outs = ["test/runtime_parameters_SUITE.beam"],
erlc_opts = "//:test_erlc_opts",
)