diff options
author | Dmitry V. Levin <ldv@strace.io> | 2023-04-05 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2023-04-20 13:10:06 +0000 |
commit | 2a4b23d3ee613ae675c795bebb282f3e5d1f9b4f (patch) | |
tree | 497ba1642e7397a4be911ebc0be6744ac7f085ae /ci | |
parent | a7e4f035fe7b2cb93df9ec38ebe6aa256c2cb8ee (diff) | |
download | pam-2a4b23d3ee613ae675c795bebb282f3e5d1f9b4f.tar.gz pam-2a4b23d3ee613ae675c795bebb282f3e5d1f9b4f.tar.bz2 pam-2a4b23d3ee613ae675c795bebb282f3e5d1f9b4f.zip |
ci: add --enable-openssl jobs to the ci matrix
Link: https://github.com/linux-pam/linux-pam/pull/550#issuecomment-1490362439
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run-build-and-tests.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/run-build-and-tests.sh b/ci/run-build-and-tests.sh index e5a76562..f5f61d38 100755 --- a/ci/run-build-and-tests.sh +++ b/ci/run-build-and-tests.sh @@ -38,6 +38,12 @@ case "${VENDORDIR-}" in ;; esac +case "${USE_OPENSSL-}" in + yes) + DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --enable-openssl" + ;; +esac + echo 'BEGIN OF BUILD ENVIRONMENT INFORMATION' uname -a |head -1 libc="$(ldd /bin/sh |sed -n 's|^[^/]*\(/[^ ]*/libc\.so[^ ]*\).*|\1|p' |head -1)" |