From: William Lallemand Date: Thu, 8 Jan 2026 16:17:13 +0000 (+0100) Subject: CI: github: remove ERR=1 temporarly from the ECH job X-Git-Tag: v3.4-dev3~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e1718ce4b83c7e804ee9be1c9d49cc8783115a2;p=thirdparty%2Fhaproxy.git CI: github: remove ERR=1 temporarly from the ECH job The ECH job still fails to compile since the openssl 4.0 deprecated functions were not removed yet. Let's remove ERR=1 temporarly. We do know that there's a regression in OpenSSL 4.0 with these reg-tests though: Error: # top TEST reg-tests/ssl/set_ssl_crlfile.vtc FAILED (0.219) exit=2 Error: # top TEST reg-tests/ssl/set_ssl_cafile.vtc FAILED (0.236) exit=2 Error: # top TEST reg-tests/quic/set_ssl_crlfile.vtc FAILED (0.196) exit=2 --- diff --git a/.github/workflows/openssl-ech.yml b/.github/workflows/openssl-ech.yml index d08a08acd..04cdac717 100644 --- a/.github/workflows/openssl-ech.yml +++ b/.github/workflows/openssl-ech.yml @@ -28,7 +28,7 @@ jobs: run: env SSL_LIB=${HOME}/opt/ scripts/build-curl.sh - name: Compile HAProxy run: | - make -j$(nproc) ERR=1 CC=gcc TARGET=linux-glibc \ + make -j$(nproc) CC=gcc TARGET=linux-glibc \ USE_QUIC=1 USE_OPENSSL=1 USE_ECH=1 \ SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include \ DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" \