pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40370?usp=email )
Change subject: testenv: podman: Stick rebar3 downloaded version to 3.24.0 ......................................................................
testenv: podman: Stick rebar3 downloaded version to 3.24.0
The previous URL now contains a newer 3.25.0 rebar3 release, which requires minimum OTP 26, but debian12 launches with OTP 25.
""" This BEAM file was compiled for a later version of the runtime system than the current (Erlang/OTP 25). To fix this, please re-compile this module with an Erlang/OTP 25 compiler. (Use of opcode 182; this emulator supports only up to 180.) """
Change-Id: Idce3a0a9e61b1d897a6d26f6b6eb49d59b0883ad --- M _testenv/data/podman/Dockerfile 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: osmith: Looks good to me, but someone else must approve fixeria: Looks good to me, approved Jenkins Builder: Verified
diff --git a/_testenv/data/podman/Dockerfile b/_testenv/data/podman/Dockerfile index fb97ee8..097fdc4 100644 --- a/_testenv/data/podman/Dockerfile +++ b/_testenv/data/podman/Dockerfile @@ -97,7 +97,7 @@ # instead of using the Debian package, as the latter pulls in ~600 MB of GUI # dependencies that we don't need: # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1083096 -RUN wget https://s3.amazonaws.com/rebar3/rebar3 -O /usr/bin/rebar3 && \ +RUN wget https://github.com/erlang/rebar3/releases/download/3.24.0/rebar3 -O /usr/bin/rebar3 && \ chmod +x /usr/bin/rebar3 && \ rebar3 --version