| Message ID | 20250804133413.24729-1-gert@greenie.muc.de |
|---|---|
| State | Accepted |
| Headers | show |
| Series | [Openvpn-devel,v1] GHA: enable -Werror for mbedTLS v3 and AWS LC builds | expand |
Indeed!
Your patch has been applied to the master branch.
commit c667671653fbe0b781cab6eee3e7c90783ffd132
Author: Frank Lichtenheld
Date: Mon Aug 4 15:34:07 2025 +0200
GHA: enable -Werror for mbedTLS v3 and AWS LC builds
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Yuriy Darnobyt <yura.uddr@gmail.com>
Message-Id: <20250804133413.24729-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg32505.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
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