From 4cbc0bdece94f706a58d86da2f5298755eed98e4 Mon Sep 17 00:00:00 2001 From: JimMoen Date: Tue, 5 Dec 2023 17:23:57 +0800 Subject: [PATCH] build: bump oldest otp vsn to OTP-25 --- .gitignore | 4 ++++ rebar.config.erl | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0e7c614a7..6fd884057 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,8 @@ _build .rebar3 rebar3.crashdump .DS_Store +# emqx_ds_replication_layer_meta:ensure_site/0 +data etc/gen.emqx.conf compile_commands.json cuttlefish @@ -69,3 +71,5 @@ bom.json ct_run*/ apps/emqx_conf/etc/emqx.conf.all.rendered* rebar-git-cache.tar +# build docker image locally +.docker_image_tag diff --git a/rebar.config.erl b/rebar.config.erl index e16be99d8..37f041bf6 100644 --- a/rebar.config.erl +++ b/rebar.config.erl @@ -15,7 +15,7 @@ do(Dir, CONFIG) -> end. assert_otp() -> - Oldest = 24, + Oldest = 25, Latest = 26, OtpRelease = list_to_integer(erlang:system_info(otp_release)), case OtpRelease < Oldest orelse OtpRelease > Latest of