CI: github: add awslc 1.16.0 to the push CI

Add a awslc 1.16.0 to the push CI. Since this is a fixed version it
shouldn't cause problems.
This commit is contained in:
William Lallemand 2023-10-11 11:38:27 +02:00
parent 5fa7bf207e
commit cc743b698f

5
.github/matrix.py vendored
View File

@ -195,6 +195,7 @@ def main(ref_name):
"OPENSSL_VERSION=1.1.1s",
"QUICTLS=yes",
"WOLFSSL_VERSION=git-d83f2fa",
"AWS_LC_VERSION=1.16.0",
# "BORINGSSL=yes",
]
@ -206,10 +207,12 @@ 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 or "WOLFSSL" in ssl:
if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes" or "LIBRESSL" in ssl or "WOLFSSL" in ssl or "AWS_LC" in ssl:
flags.append("USE_QUIC=1")
if "WOLFSSL" in ssl:
flags.append("USE_OPENSSL_WOLFSSL=1")
if "AWS_LC" in ssl:
flags.append("USE_OPENSSL_AWSLC=1")
if ssl != "stock":
flags.append("SSL_LIB=${HOME}/opt/lib")
flags.append("SSL_INC=${HOME}/opt/include")