From c24ac4339c7db15e148ce73d43bfd17676b5a418 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Mon, 11 Apr 2022 18:59:41 +0200 Subject: [PATCH] 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. --- .github/matrix.py | 2 -- 1 file changed, 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")