]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: Github Actions: enable USE_QUIC=1 for BoringSSL builds
authorIlya Shipitsin <chipitsine@gmail.com>
Sun, 9 May 2021 16:27:28 +0000 (21:27 +0500)
committerWilly Tarreau <w@1wt.eu>
Mon, 10 May 2021 05:24:55 +0000 (07:24 +0200)
if haproxy is built against BoringSSL, let us add USE_QUIC=1 dynamically

.github/matrix.py

index 577ad5b72ec12c43b5b6f8eaaf0d93a2cfb92f74..067ce93a32375987d51e23263ed1c92edc4c88bf 100644 (file)
@@ -109,6 +109,8 @@ for CC in ["gcc", "clang"]:
         "BORINGSSL=yes",
     ]:
         flags = ["USE_OPENSSL=1"]
+        if ssl == "BORINGSSL=yes":
+            flags.append("USE_QUIC=1")
         if ssl != "stock":
             flags.append("SSL_LIB=${HOME}/opt/lib")
             flags.append("SSL_INC=${HOME}/opt/include")