Skip to content

Commit f84bb56

Browse files
authored
Merge pull request #4472 from rabbitmq/use-rules_erlang-2.5.1
rules_erlang 2.5.1
2 parents 01af0a4 + d7d2352 commit f84bb56

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

WORKSPACE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ rules_pkg_dependencies()
5959

6060
http_archive(
6161
name = "rules_erlang",
62-
sha256 = "920b564662d20c6ac0e6568ca1c8b015f81b422e027590981d7e97422751deaf",
63-
strip_prefix = "rules_erlang-2.5.0",
64-
urls = ["https://github.com/rabbitmq/rules_erlang/archive/refs/tags/2.5.0.zip"],
62+
sha256 = "36d8cb85574cda48952b5b4e538a45d054cc690397ba87905049bef556b55159",
63+
strip_prefix = "rules_erlang-2.5.1",
64+
urls = ["https://github.com/rabbitmq/rules_erlang/archive/refs/tags/2.5.1.zip"],
6565
)
6666

6767
load("@rules_erlang//:rules_erlang.bzl", "rules_erlang_dependencies")

deps/amqp10_client/BUILD.bazel

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ suites = [
109109
"@activemq//:exec_dir",
110110
],
111111
erlc_opts = [
112-
"-I deps/amqp10_client",
112+
"-I",
113+
"deps/amqp10_client",
113114
],
114115
test_env = {
115116
"ACTIVEMQ": "$TEST_SRCDIR/$TEST_WORKSPACE/external/activemq/bin/activemq",

deps/rabbit/BUILD.bazel

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,8 @@ suites = [
698698
"src/rabbit_fifo.hrl",
699699
],
700700
erlc_opts = [
701-
"-I deps/rabbit", # allow rabbit_fifo.hrl to be included at src/rabbit_fifo.hrl
701+
"-I",
702+
"deps/rabbit", # allow rabbit_fifo.hrl to be included at src/rabbit_fifo.hrl
702703
],
703704
runtime_deps = [
704705
"@ra//:erlang_app",
@@ -767,7 +768,8 @@ suites = [
767768
"src/rabbit_fifo_v0.hrl",
768769
],
769770
erlc_opts = [
770-
"-I deps/rabbit", # allow rabbit_fifo.hrl to be included at src/rabbit_fifo.hrl
771+
"-I",
772+
"deps/rabbit", # allow rabbit_fifo.hrl to be included at src/rabbit_fifo.hrl
771773
],
772774
runtime_deps = [
773775
"@meck//:erlang_app",

deps/rabbitmq_aws/BUILD.bazel

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ dialyze(
5858

5959
eunit(
6060
erlc_opts = RABBITMQ_TEST_ERLC_OPTS + [
61-
"-I deps/rabbitmq_aws",
61+
"-I",
62+
"deps/rabbitmq_aws",
6263
"+nowarn_export_all",
6364
],
6465
runtime_deps = [

deps/rabbitmq_web_mqtt/BUILD.bazel

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ suites = [
8888
additional_beam = [":test_utils"],
8989
additional_hdrs = glob(["test/src/*.hrl"]),
9090
erlc_opts = [
91-
"-I deps/rabbitmq_web_mqtt/test",
91+
"-I",
92+
"deps/rabbitmq_web_mqtt/test",
9293
],
9394
),
9495
rabbitmq_integration_suite(

0 commit comments

Comments
 (0)