From: William Lallemand Date: Mon, 9 Oct 2023 21:36:13 +0000 (+0200) Subject: CI: github: add a wolfssl entry to the CI X-Git-Tag: v2.9-dev8~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=160615e574cb8e6369296d835f9a3679bdf4d081;p=thirdparty%2Fhaproxy.git CI: github: add a wolfssl entry to the CI Add a build with wolfssl 5.6.3 to the github CI. --- diff --git a/.github/matrix.py b/.github/matrix.py index 5051d16382..8a46f256b3 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -194,6 +194,7 @@ def main(ref_name): "OPENSSL_VERSION=1.0.2u", "OPENSSL_VERSION=1.1.1s", "QUICTLS=yes", + "WOLFSSL_VERSION=5.6.3", # "BORINGSSL=yes", ] @@ -205,8 +206,10 @@ 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: + if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes" or "LIBRESSL" in ssl or "WOLFSSL" in ssl: flags.append("USE_QUIC=1") + if "WOLFSSL" in ssl: + flags.append("USE_OPENSSL_WOLFSSL=1") if ssl != "stock": flags.append("SSL_LIB=${HOME}/opt/lib") flags.append("SSL_INC=${HOME}/opt/include")