Always build OpenSSL shared.

This is the default for current versions but we need it to test against
earlier versions.
This commit is contained in:
Darren Tucker 2021-04-27 12:24:10 +10:00
parent b3cc9fbdff
commit 9f79e80dc4
1 changed files with 1 additions and 1 deletions

2
.github/setup_ci.sh vendored
View File

@ -99,7 +99,7 @@ if [ ! -z "${INSTALL_OPENSSL}" ]; then
git clone https://github.com/openssl/openssl.git &&
cd ${HOME}/openssl &&
git checkout ${INSTALL_OPENSSL} &&
./config no-threads ${SSLCONFOPTS} \
./config no-threads shared ${SSLCONFOPTS} \
--prefix=/opt/openssl &&
make && sudo make install_sw)
fi