mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-05 22:56:57 +02:00
CI: github: add a wolfssl entry to the CI
Add a build with wolfssl 5.6.3 to the github CI.
This commit is contained in:
parent
0be50f44f8
commit
160615e574
5
.github/matrix.py
vendored
5
.github/matrix.py
vendored
@ -194,6 +194,7 @@ def main(ref_name):
|
||||
"OPENSSL_VERSION=1.0.2u",
|
||||
"OPENSSL_VERSION=1.1.1s",
|
||||
"QUICTLS=yes",
|
||||
"WOLFSSL_VERSION=5.6.3",
|
||||
# "BORINGSSL=yes",
|
||||
]
|
||||
|
||||
@ -205,8 +206,10 @@ def main(ref_name):
|
||||
|
||||
for ssl in ssl_versions:
|
||||
flags = ["USE_OPENSSL=1"]
|
||||
if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes" or "LIBRESSL" in ssl:
|
||||
if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes" or "LIBRESSL" in ssl or "WOLFSSL" in ssl:
|
||||
flags.append("USE_QUIC=1")
|
||||
if "WOLFSSL" in ssl:
|
||||
flags.append("USE_OPENSSL_WOLFSSL=1")
|
||||
if ssl != "stock":
|
||||
flags.append("SSL_LIB=${HOME}/opt/lib")
|
||||
flags.append("SSL_INC=${HOME}/opt/include")
|
||||
|
Loading…
Reference in New Issue
Block a user