Skip to content

Commit 715820c

Browse files
Skip ibmmq groip if running under ARM64
1 parent 51573fe commit 715820c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Diff for: deps/amqp10_client/test/system_SUITE.erl

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ all() ->
2424
{group, rabbitmq},
2525
{group, rabbitmq_strict},
2626
{group, activemq},
27-
{group, ibmmq},
27+
{group, ibmmq}
2828
{group, activemq_no_anon},
2929
{group, mock}
3030
].
@@ -133,7 +133,11 @@ init_per_group(activemq, Config0) ->
133133
activemq_ct_helpers:setup_steps("activemq.xml"));
134134

135135
init_per_group(ibmmq, Config) ->
136-
rabbit_ct_helpers:run_steps(Config, ibmmq_ct_helpers:setup_steps());
136+
ct:log("running arch ~p", [erlang:system_info(system_architecture)]),
137+
case string:find(erlang:system_info(system_architecture), "ARM") of
138+
nomatch -> rabbit_ct_helpers:run_steps(Config, ibmmq_ct_helpers:setup_steps());
139+
_ -> {skip, no_arm64_docker_image_for_ibmmq}
140+
end;
137141

138142
init_per_group(activemq_no_anon, Config0) ->
139143
Config = rabbit_ct_helpers:set_config(

0 commit comments

Comments
 (0)