From: Terry Burton Date: Wed, 22 Dec 2021 17:05:21 +0000 (+0000) Subject: CI: Pass in -Wno-error=deprecated-declarations to LIB_ALT build for now X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78f814cc8f99ca69f74a6886ec327bd067fa7415;p=thirdparty%2Ffreeradius-server.git CI: Pass in -Wno-error=deprecated-declarations to LIB_ALT build for now Should be reverted once port to OpenSSL 3 API is complete. --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a4551548a..2fcde57766 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -254,6 +254,8 @@ jobs: elif [ -d /opt/openssl ]; then export PATH=/opt/openssl/bin:$PATH build_paths="--with-openssl-lib-dir=/opt/openssl/lib64 --with-openssl-include-dir=/opt/openssl/include" + # Remove the following once port to the OpenSSL 3 API is complete + BUILD_CFLAGS="$BUILD_CFLAGS -Wno-error=deprecated-declarations" fi CFLAGS="${BUILD_CFLAGS}" ./configure -C \ --enable-werror \