]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: github: add awslc 1.16.0 to the push CI
authorWilliam Lallemand <wlallemand@haproxy.com>
Wed, 11 Oct 2023 09:38:27 +0000 (11:38 +0200)
committerWilliam Lallemand <wlallemand@haproxy.com>
Wed, 11 Oct 2023 09:38:27 +0000 (11:38 +0200)
Add a awslc 1.16.0 to the push CI. Since this is a fixed version it
shouldn't cause problems.

.github/matrix.py

index 7a891b11c9b21faf104f9c02bed14d2fd582698a..afced5ea2d8bf416617037a053d4843b0abc5437 100755 (executable)
@@ -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")