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.
This commit is contained in:
William Lallemand 2022-04-11 18:59:41 +02:00
parent f985f03fe4
commit c24ac4339c
1 changed files with 0 additions and 2 deletions

2
.github/matrix.py vendored
View File

@ -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")