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:
parent
5fa7bf207e
commit
cc743b698f
5
.github/matrix.py
vendored
5
.github/matrix.py
vendored
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user