From cc743b698f7a4a6d08c29e031c57c58f26e07fa0 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Wed, 11 Oct 2023 11:38:27 +0200 Subject: [PATCH] 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. --- .github/matrix.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/matrix.py b/.github/matrix.py index 7a891b11c..afced5ea2 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -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")