Skip to content

Commit 9950188

Browse files
Merge pull request #9787 from rabbitmq/mk-drop-erlang-25-support
Require Erlang/OTP 26.0 (ERTS 14.0)
2 parents 7e95c16 + e9958e9 commit 9950188

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.github/workflows/oci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
matrix:
3535
include:
3636
- image_tag_suffix: otp-min-bazel
37-
otp_version_id: 25_3
37+
otp_version_id: 26_1
3838
- image_tag_suffix: otp-max-bazel
3939
otp_version_id: 26_1
4040
steps:

.github/workflows/perform-bazel-execution-comparison.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
erlang_version:
16-
- "25"
16+
- "26"
1717
include:
18-
- erlang_version: "25"
18+
- erlang_version: "26"
1919
cache_name: ci-bazel-cache-analysis
2020
timeout-minutes: 120
2121
steps:
@@ -48,9 +48,9 @@ jobs:
4848
strategy:
4949
matrix:
5050
erlang_version:
51-
- "25"
51+
- "26"
5252
include:
53-
- erlang_version: "25"
53+
- erlang_version: "26"
5454
cache_name: ci-bazel-cache-analysis
5555
timeout-minutes: 120
5656
steps:

.github/workflows/test-mixed-versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
fail-fast: false
131131
matrix:
132132
otp_version_id:
133-
- "25_3"
133+
- "26_1"
134134
metadata_store:
135135
- mnesia
136136
- khepri

.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)