summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2024-02-29 16:33:38 +0100
committerJoe Orton <jorton@apache.org>2024-02-29 16:33:38 +0100
commitf65a498b3b17ece0c394ba32293930f41536071b (patch)
tree6dd0469102d9bc764422c09efeec01a7cc5fd264 /test
parent* modules/ssl/ssl_engine_pphrase.c (modssl_load_engine_keypair): (diff)
downloadapache2-f65a498b3b17ece0c394ba32293930f41536071b.tar.xz
apache2-f65a498b3b17ece0c394ba32293930f41536071b.zip
CI: Add OpenSSL 3.1 builds, including a no-engine build.
(attempt to use 3.2 failed, unsure why) - add OpenSSL build binaries to $PATH Github: closes #415 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916058 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rwxr-xr-xtest/travis_before_linux.sh2
-rwxr-xr-xtest/travis_run_linux.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/test/travis_before_linux.sh b/test/travis_before_linux.sh
index 58c1337b38..e67931847b 100755
--- a/test/travis_before_linux.sh
+++ b/test/travis_before_linux.sh
@@ -115,7 +115,7 @@ if test -v TEST_OPENSSL3; then
curl "https://www.openssl.org/source/openssl-${TEST_OPENSSL3}.tar.gz" |
tar -xzf -
cd openssl-${TEST_OPENSSL3}
- ./Configure --prefix=$HOME/root/openssl3 shared no-tests
+ ./Configure --prefix=$HOME/root/openssl3 shared no-tests ${OPENSSL_CONFIG}
make $MFLAGS
make install_sw
touch $HOME/root/openssl-is-${TEST_OPENSSL3}
diff --git a/test/travis_run_linux.sh b/test/travis_run_linux.sh
index 19ccb601b1..1b90879ea6 100755
--- a/test/travis_run_linux.sh
+++ b/test/travis_run_linux.sh
@@ -62,6 +62,8 @@ fi
if test -v TEST_OPENSSL3; then
CONFIG="$CONFIG --with-ssl=$HOME/root/openssl3"
export LD_LIBRARY_PATH=$HOME/root/openssl3/lib:$HOME/root/openssl3/lib64
+ export PATH=$HOME/root/openssl3/bin:$PATH
+ openssl version
fi
srcdir=$PWD