From: William Lallemand Date: Wed, 11 Oct 2023 09:38:27 +0000 (+0200) Subject: CI: github: add awslc 1.16.0 to the push CI X-Git-Tag: v2.9-dev8~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc743b698f7a4a6d08c29e031c57c58f26e07fa0;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/.github/matrix.py b/.github/matrix.py index 7a891b11c9..afced5ea2d 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")