This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new 052591b Have fedora builds test with system openssl 3.x (#174)
052591b is described below
commit 052591bf6b448a1cbdd65902ac3c6ef0913abb59
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Jun 14 16:52:54 2023 -0500
Have fedora builds test with system openssl 3.x (#174)
We now support openssl 3.x. We might as well test it with our PR builds.
fedora:38 ships with openssl 3.x, so converting that to use the system
ssl.
---
jenkins/github/fedora.pipeline | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/jenkins/github/fedora.pipeline b/jenkins/github/fedora.pipeline
index 7fb5ce3..7b68c44 100644
--- a/jenkins/github/fedora.pipeline
+++ b/jenkins/github/fedora.pipeline
@@ -53,10 +53,9 @@ pipeline {
export CXXSTD=20
autoreconf -fiv
- # Remove the --with-openssl argument when we support
OpenSSL 3.x.
- ./configure --with-openssl=/opt/openssl-quic
--enable-experimental-plugins --enable-example-plugins --prefix=/tmp/ats/
--enable-werror --enable-debug --enable-wccp --enable-ccache
+ ./configure --enable-experimental-plugins
--enable-example-plugins --prefix=/tmp/ats/ --enable-werror --enable-debug
--enable-wccp --enable-ccache
make -j4 V=1 Q=
- make -j 2 check VERBOSE=Y V=1
+ make -j4 check VERBOSE=Y V=1
make install
/tmp/ats/bin/traffic_server -K -k -R 1
'''