Skip to content

Commit

Permalink
bump: OTP 26 and 27 to include fix for external_copy schema merge
Browse files Browse the repository at this point in the history
  • Loading branch information
zmstone committed Jan 14, 2025
1 parent 0079f3a commit da0575c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV EMQX_BUILDER_IMAGE=${BUILD_FROM}
ENV ERL_AFLAGS="-kernel shell_history enabled"

ARG BUILD_WITHOUT_QUIC=false
ARG OTP_VERSION=27.1-1
ARG OTP_VERSION=27.1-3
ARG ELIXIR_VERSION=1.17.3
ARG FDB_VERSION=7.3.43
ARG EMQTT_BENCH_VERSION=0.4.25
Expand All @@ -20,7 +20,7 @@ RUN if [ -f /opt/rh/devtoolset-10/enable ]; then source /opt/rh/devtoolset-10/en
which g++ && g++ --version && \
/get-zsh.sh && \
/get-otp.sh ${OTP_VERSION} && \
/get-elixir.sh ${ELIXIR_VERSION} && \
/get-elixir.sh ${ELIXIR_VERSION} && \
/get-fdb.sh ${FDB_VERSION} && \
/get-emqtt-bench.sh ${EMQTT_BENCH_VERSION} && \
/get-lux.sh ${LUX_VERSION} && \
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ OTP version from emqx/otp.git, Elixir version from elixir-lang/elixir.git.

+ OTP-24.3.4.2-4,Elixir-1.15.7
+ OTP-25.3.2-2,Elixir-1.15.7
+ OTP-26.2.5.2-2,Elixir-1.15.7
+ OTP-27.2-1,Elixir-1.17.3
+ OTP-26.2.5.2-3,Elixir-1.15.7
+ OTP-27.1-3,Elixir-1.17.3
4 changes: 3 additions & 1 deletion get-otp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ ROOT='/'
cd "$ROOT"

name="OTP-${OTP_VERSION}"
curl --silent --show-error -fkL "https://github.com/emqx/otp/archive/${name}.zip" -o "${name}.zip"
download_url="https://github.com/emqx/otp/archive/${name}.zip"
echo "Downloading ${download_url}"
curl --silent --show-error -fkL ${download_url} -o "${name}.zip"

unzip -q "$name.zip"
rm -f "$name.zip"
Expand Down

0 comments on commit da0575c

Please sign in to comment.