From: William Lallemand Date: Mon, 7 Jun 2021 13:27:57 +0000 (+0200) Subject: CI: github actions: -Wno-deprecated-declarations with OpenSSL 3.0.0 X-Git-Tag: v2.5-dev1~202 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=64d6c09e54f5deed060ece04ad53a3f5298c0a96;p=thirdparty%2Fhaproxy.git CI: github actions: -Wno-deprecated-declarations with OpenSSL 3.0.0 Disable the deprecated functions warning when building with openssl 3.0.0 alpha. This will need to be reverted once haproxy is ported to the new API. --- diff --git a/.github/matrix.py b/.github/matrix.py index 1ff48aa4fd..4735248489 100644 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -116,6 +116,8 @@ for CC in ["gcc", "clang"]: flags = ["USE_OPENSSL=1"] if ssl == "BORINGSSL=yes": flags.append("USE_QUIC=1") + if ssl == "OPENSSL_VERSION=3.0.0-alpha17": + 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")