aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2023-11-13 14:00:00 +0000
committerBenny Baumann <BenBE@geshi.org>2023-11-14 00:27:49 +0100
commite8bda3c78ef2df5d71f6f247dc81d8e953659803 (patch)
tree4bb0e2a43adbab3bf8e840fa460e1503035bb062 /ci
parentea5722f7304489cd8235a0ade7ce8fc6a62103eb (diff)
downloadpam-e8bda3c78ef2df5d71f6f247dc81d8e953659803.tar.gz
pam-e8bda3c78ef2df5d71f6f247dc81d8e953659803.tar.bz2
pam-e8bda3c78ef2df5d71f6f247dc81d8e953659803.zip
ci: add --enable-debug jobs to the ci matrix
Diffstat (limited to 'ci')
-rwxr-xr-xci/run-build-and-tests.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/run-build-and-tests.sh b/ci/run-build-and-tests.sh
index f5f61d38..019c8529 100755
--- a/ci/run-build-and-tests.sh
+++ b/ci/run-build-and-tests.sh
@@ -44,6 +44,12 @@ case "${USE_OPENSSL-}" in
;;
esac
+case "${ENABLE_DEBUG-}" in
+ yes)
+ DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --enable-debug"
+ ;;
+esac
+
echo 'BEGIN OF BUILD ENVIRONMENT INFORMATION'
uname -a |head -1
libc="$(ldd /bin/sh |sed -n 's|^[^/]*\(/[^ ]*/libc\.so[^ ]*\).*|\1|p' |head -1)"