summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorWilliam Lallemand <wlallemand@haproxy.org>2022-04-11 18:59:41 +0200
committerWilliam Lallemand <wlallemand@haproxy.org>2022-04-11 19:05:03 +0200
commitc24ac4339c7db15e148ce73d43bfd17676b5a418 (patch)
tree3cc2104ddbd4d6efadd5ce78e16e7ad59ada6612 /.github
parentf985f03fe4d7ad5776d4650d3d09290cd2d39984 (diff)
downloadhaproxy-c24ac4339c7db15e148ce73d43bfd17676b5a418.tar.gz
CI: github actions: disable -Wno-deprecated
The deprecrated code is now disabled by default, so we can build with quictls and openssl 3.0 without this option.
Diffstat (limited to '.github')
-rwxr-xr-x.github/matrix.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/.github/matrix.py b/.github/matrix.py
index 2bd650631..d070ae280 100755
--- a/.github/matrix.py
+++ b/.github/matrix.py
@@ -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")