CI: enable QUIC for LibreSSL builds

since LibreSSL-3.6.x supports QUIC, let us enable it
This commit is contained in:
Ilya Shipitsin 2022-11-02 11:59:37 +05:00 committed by Willy Tarreau
parent 70b2c72687
commit 6397c7c55f
1 changed files with 1 additions and 1 deletions

2
.github/matrix.py vendored
View File

@ -134,7 +134,7 @@ for CC in ["gcc", "clang"]:
# "BORINGSSL=yes",
]:
flags = ["USE_OPENSSL=1"]
if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes":
if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes" or "LIBRESSL" in ssl:
flags.append("USE_QUIC=1")
if ssl != "stock":
flags.append("SSL_LIB=${HOME}/opt/lib")