From: Gert D. <ge...@gr...> - 2025-08-04 13:34:22
|
From: Frank Lichtenheld <fr...@li...> Because we can and so we should. Change-Id: I9159e2e354170ad6dbed5a6ce620f57fa8ab128e Signed-off-by: Frank Lichtenheld <fr...@li...> Acked-by: Yuriy Darnobyt <yur...@gm...> --- This change was reviewed on Gerrit and approved by at least one developer. I request to merge it to master. Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1128 This mail reflects revision 1 of this Change. Acked-by according to Gerrit (reflected above): Yuriy Darnobyt <yur...@gm...> diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index cc17fba..0f88d0c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -425,7 +425,7 @@ - name: autoconf run: autoreconf -fvi - name: configure - run: ./configure --with-crypto-library=mbedtls + run: ./configure --with-crypto-library=mbedtls --enable-werror - name: make all run: make -j3 - name: configure checks @@ -489,7 +489,7 @@ OPENSSL_CFLAGS="-I/${{ env.AWS_LC_INSTALL }}/include" \ OPENSSL_LIBS="-L/${{ env.AWS_LC_INSTALL }}/lib -lssl -lcrypto" \ LDFLAGS="-Wl,-rpath=/${{ env.AWS_LC_INSTALL }}/lib" \ - ./configure --with-crypto-library=openssl + ./configure --with-crypto-library=openssl --enable-werror - name: make all run: make -j3 - name: configure checks |