diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml index 87faf076d..ab0d3684c 100644 --- a/.github/workflows/runtime.yml +++ b/.github/workflows/runtime.yml @@ -51,7 +51,7 @@ jobs: run: | sed -i "s|13.0 |9.0.5 |g" configure.ac - - name: Get compatible Rebar binaries + - name: Get old compatible Rebar binaries if: matrix.otp < 24 run: | rm rebar @@ -61,6 +61,16 @@ jobs: chmod +x rebar chmod +x rebar3 + - name: Get recent compatible Rebar binaries + if: matrix.otp > 23 && matrix.otp < 25 + run: | + rm rebar + rm rebar3 + wget https://github.com/processone/ejabberd/raw/24.12/rebar + wget https://github.com/processone/ejabberd/raw/24.12/rebar3 + chmod +x rebar + chmod +x rebar3 + - name: Prepare libraries run: | apt-get -qq update diff --git a/rebar b/rebar index d0f5766d6..3f6203bcf 100755 Binary files a/rebar and b/rebar differ diff --git a/rebar3 b/rebar3 index ab1c1369d..deaea1f90 100755 Binary files a/rebar3 and b/rebar3 differ