Specify test target if we build without OpenSSL.

When we decide we can't use the versions of OpenSSL available, also
restrict the tests we run to avoid the ones that need OpenSSL.
This commit is contained in:
Darren Tucker 2023-03-26 14:39:45 +11:00
parent b308c636f5
commit 4a948b1469
No known key found for this signature in database

3
.github/configs vendored
View File

@ -313,6 +313,9 @@ if [ -z "${LIBCRYPTOFLAGS}" ]; then
*) LIBCRYPTOFLAGS="--with-ssl-dir=${i}" ;;
esac
done
if [ "${LIBCRYPTOFLAGS}" = "--without-openssl" ]; then
TEST_TARGET="t-exec"
fi
fi
CONFIGFLAGS="${CONFIGFLAGS} ${LIBCRYPTOFLAGS}"