mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-27 07:53:08 +00:00
BUILD: SSL: add QUICTLS to build matrix
It also enables QUIC when QUICTLS is used.
This commit is contained in:
parent
2091c7ca70
commit
d69d65a563
5
.github/matrix.py
vendored
5
.github/matrix.py
vendored
@ -113,12 +113,13 @@ for CC in ["gcc", "clang"]:
|
||||
"OPENSSL_VERSION=3.0.0",
|
||||
"LIBRESSL_VERSION=2.9.2",
|
||||
"LIBRESSL_VERSION=3.3.3",
|
||||
"QUICTLS=yes",
|
||||
# "BORINGSSL=yes",
|
||||
]:
|
||||
flags = ["USE_OPENSSL=1"]
|
||||
if ssl == "BORINGSSL=yes":
|
||||
if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes":
|
||||
flags.append("USE_QUIC=1")
|
||||
if "OPENSSL_VERSION=3.0.0" in ssl:
|
||||
if "OPENSSL_VERSION=3.0.0" in ssl or ssl == "QUICTLS=yes":
|
||||
flags.append('DEBUG_CFLAGS="-g -Wno-deprecated-declarations"')
|
||||
if ssl != "stock":
|
||||
flags.append("SSL_LIB=${HOME}/opt/lib")
|
||||
|
Loading…
Reference in New Issue
Block a user