Skip to content

Require Erlang/OTP 26.0 (ERTS 14.0) #9787

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/oci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
matrix:
include:
- image_tag_suffix: otp-min-bazel
otp_version_id: 25_3
otp_version_id: 26_1
- image_tag_suffix: otp-max-bazel
otp_version_id: 26_1
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/perform-bazel-execution-comparison.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
strategy:
matrix:
erlang_version:
- "25"
- "26"
include:
- erlang_version: "25"
- erlang_version: "26"
cache_name: ci-bazel-cache-analysis
timeout-minutes: 120
steps:
Expand Down Expand Up @@ -48,9 +48,9 @@ jobs:
strategy:
matrix:
erlang_version:
- "25"
- "26"
include:
- erlang_version: "25"
- erlang_version: "26"
cache_name: ci-bazel-cache-analysis
timeout-minutes: 120
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-mixed-versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
fail-fast: false
matrix:
otp_version_id:
- "25_3"
- "26_1"
metadata_store:
- mnesia
- khepri
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
- v3.12.x
- v3.11.x
- v3.10.x
- v3.9.x
- v3.8.x
- bump-otp-for-oci
- bump-rbe-*
- bump-rules_erlang
Expand Down Expand Up @@ -35,7 +33,6 @@ jobs:
fail-fast: false
matrix:
otp_version_id:
- 25_3
- 26
metadata_store:
- mnesia
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@

-export([check/1]).

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

check(_Context) ->
?LOG_DEBUG(
Expand Down