Skip to content

Commit 680c36d

Browse files
Require Erlang/OTP 26.0 (ERTS 14.0)
1 parent 7e95c16 commit 680c36d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
- v3.12.x
77
- v3.11.x
88
- v3.10.x
9-
- v3.9.x
10-
- v3.8.x
119
- bump-otp-for-oci
1210
- bump-rbe-*
1311
- bump-rules_erlang
@@ -35,7 +33,6 @@ jobs:
3533
fail-fast: false
3634
matrix:
3735
otp_version_id:
38-
- 25_3
3936
- 26
4037
metadata_store:
4138
- mnesia

deps/rabbit/apps/rabbitmq_prelaunch/src/rabbit_prelaunch_erlang_compat.erl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66

77
-export([check/1]).
88

9-
-define(OTP_MINIMUM, "25.0").
10-
-define(ERTS_MINIMUM, "13.0").
9+
%% minimum Erlang/OTP version supported
10+
-define(OTP_MINIMUM, "26.0").
11+
%% the ERTS version provided by the minimum Erlang/OTP version supported
12+
-define(ERTS_MINIMUM, "14.0").
1113

1214
check(_Context) ->
1315
?LOG_DEBUG(

0 commit comments

Comments
 (0)