chore: switch to `emqx/rebar3` 3.19.0-emqx-1

Which should be safe to run on OTP-25.
This commit is contained in:
Andrew Mayorov 2022-12-08 14:12:21 +03:00
parent cab063926c
commit 202d2b07ff
No known key found for this signature in database
GPG Key ID: 2837C62ACFBFED5D
1 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@
set -euo pipefail
## rebar3 tag 3.18.0-emqx-1 is compiled using otp24.1.5.
## rebar3 tag 3.19.0-emqx-1 is compiled using latest official OTP-24 image.
## we have to use an otp24-compiled rebar3 because the defination of record #application{}
## in systools.hrl is changed in otp24.
OTP_VSN="${OTP_VSN:-$(./scripts/get-otp-vsn.sh)}"
@ -13,6 +13,9 @@ case ${OTP_VSN} in
24*)
VERSION="3.18.0-emqx-1"
;;
25*)
VERSION="3.19.0-emqx-1"
;;
*)
echo "Unsupporetd Erlang/OTP version $OTP_VSN"
exit 1