]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: github actions: disable -Wno-deprecated
authorWilliam Lallemand <wlallemand@haproxy.org>
Mon, 11 Apr 2022 16:59:41 +0000 (18:59 +0200)
committerWilliam Lallemand <wlallemand@haproxy.org>
Mon, 11 Apr 2022 17:05:03 +0000 (19:05 +0200)
The deprecrated code is now disabled by default, so we can build with
quictls and openssl 3.0 without this option.

.github/matrix.py

index 2bd6506312036554c093b2976bf057b0142e7b5e..d070ae280d1daea50bdce8f3386d66eeca60e932 100755 (executable)
@@ -119,8 +119,6 @@ for CC in ["gcc", "clang"]:
         flags = ["USE_OPENSSL=1"]
         if ssl == "BORINGSSL=yes" or ssl == "QUICTLS=yes":
             flags.append("USE_QUIC=1")
-        if "OPENSSL_VERSION=3.0." in ssl or ssl == "QUICTLS=yes":
-            flags.append('DEBUG_CFLAGS="-g -Wno-deprecated-declarations"')
         if ssl != "stock":
             flags.append("SSL_LIB=${HOME}/opt/lib")
             flags.append("SSL_INC=${HOME}/opt/include")