From cc4ad32390787f88c6f656eb39f3f256d6eeec22 Mon Sep 17 00:00:00 2001 From: rami3l Date: Fri, 26 Apr 2024 20:09:20 +0800 Subject: [PATCH] ci(linux-gnu): install `perl-IPC-Cmd` to make OpenSSL v3 happy --- ci/docker/i686-unknown-linux-gnu/Dockerfile | 5 +++++ ci/docker/x86_64-unknown-linux-gnu/Dockerfile | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ci/docker/i686-unknown-linux-gnu/Dockerfile b/ci/docker/i686-unknown-linux-gnu/Dockerfile index b183f532..f4461b5d 100644 --- a/ci/docker/i686-unknown-linux-gnu/Dockerfile +++ b/ci/docker/i686-unknown-linux-gnu/Dockerfile @@ -1 +1,6 @@ FROM rust-i686-unknown-linux-gnu + + # Install `perl-IPC-Cmd` to make OpenSSL v3 happy. + # See: + RUN yum upgrade -y && \ + yum install -y perl-IPC-Cmd diff --git a/ci/docker/x86_64-unknown-linux-gnu/Dockerfile b/ci/docker/x86_64-unknown-linux-gnu/Dockerfile index 6b7d2e73..18017973 100644 --- a/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +++ b/ci/docker/x86_64-unknown-linux-gnu/Dockerfile @@ -1 +1,6 @@ FROM rust-x86_64-unknown-linux-gnu + + # Install `perl-IPC-Cmd` to make OpenSSL v3 happy. + # See: + RUN yum upgrade -y && \ + yum install -y perl-IPC-Cmd