diff --git a/.github/workflows/manylinux2014-openssl.Dockerfile b/.github/workflows/manylinux2014-openssl.Dockerfile index a963b675a..e708cddfe 100644 --- a/.github/workflows/manylinux2014-openssl.Dockerfile +++ b/.github/workflows/manylinux2014-openssl.Dockerfile @@ -18,8 +18,14 @@ WORKDIR $OPENSSL_TAR_NAME ARG OPENSSL_INSTALL_DIR=/opt/openssl3 RUN ./Configure --prefix=$OPENSSL_INSTALL_DIR --openssldir=/etc/opt/openssl3 RUN make -# There are 2 expected tests to fail -# RUN make test + +RUN useradd nonroot +USER nonroot + +RUN make test + +USER root + RUN make install RUN ln -s $OPENSSL_INSTALL_DIR/lib64/libssl.so.3 /usr/local/lib64/libssl.so.3 RUN ln -s $OPENSSL_INSTALL_DIR/lib64/libcrypto.so.3 /usr/local/lib64/libcrypto.so.3