Hello,

USE_QUIC=1 added for BoringSSL builds.

thanks,
Ilya
From 2a79e92bdac01d926e7f85583f455db17f1515bb Mon Sep 17 00:00:00 2001
From: Ilya Shipitsin <[email protected]>
Date: Sun, 9 May 2021 21:27:28 +0500
Subject: [PATCH] CI: Github Actions: enable USE_QUIC=1 for BoringSSL builds

if haproxy is built against BoringSSL, let us add USE_QUIC=1 dynamically
---
 .github/matrix.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/matrix.py b/.github/matrix.py
index 577ad5b72..067ce93a3 100644
--- a/.github/matrix.py
+++ b/.github/matrix.py
@@ -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")
-- 
2.31.1

Reply via email to