if ssl == "BORINGSSL=yes" or "QUICTLS" in ssl or "LIBRESSL" in ssl or "WOLFSSL" in ssl or "AWS_LC" in ssl or openssl_supports_quic:
flags.append("USE_QUIC=1")
+ supports_ech = False
+ try:
+ supports_ech = "AWS_LC" in ssl or version.Version(ssl.split("OPENSSL_VERSION=",1)[1]) >= version.Version("4.0")
+ except:
+ pass
+
+ if supports_ech:
+ flags.append("USE_ECH=1")
+
matrix.append(
{
"name": "{}, {}, ssl={}".format(os, CC, clean_ssl(ssl)),
- name: Compile HAProxy
run: |
make -j$(nproc) ERR=1 CC=gcc TARGET=linux-glibc \
- USE_OPENSSL_AWSLC=1 USE_QUIC=1 \
+ USE_OPENSSL_AWSLC=1 USE_QUIC=1 USE_ECH=1 \
SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include \
DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" \
ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/"
+++ /dev/null
-name: openssl ECH
-
-on:
- schedule:
- - cron: "0 3 * * *"
- workflow_dispatch:
-
-permissions:
- contents: read
-
-jobs:
- test:
- runs-on: ubuntu-latest
- if: ${{ github.repository_owner == 'haproxy' || github.event_name == 'workflow_dispatch' }}
- steps:
- - uses: actions/checkout@v6
- - name: Install apt dependencies
- run: |
- sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none
- sudo apt-get --no-install-recommends -y install socat gdb
- sudo apt-get --no-install-recommends -y install libpsl-dev
- - uses: ./.github/actions/setup-vtest
- - name: Install OpenSSL+ECH
- run: env OPENSSL_VERSION="git-feature/ech" GIT_TYPE="branch" scripts/build-ssl.sh
- - name: Install curl+ECH
- run: env SSL_LIB=${HOME}/opt/ scripts/build-curl.sh
- - name: Compile HAProxy
- run: |
- 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" \
- ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/" \
- ARCH_FLAGS="-ggdb3 -fsanitize=address"
- sudo make install
- - name: Show HAProxy version
- id: show-version
- run: |
- ldd $(which haproxy)
- haproxy -vv
- echo "version=$(haproxy -vq)" >> $GITHUB_OUTPUT
- - name: Install problem matcher for VTest
- run: echo "::add-matcher::.github/vtest.json"
- - name: Run VTest for HAProxy
- id: vtest
- run: |
- # This is required for macOS which does not actually allow to increase
- # the '-n' soft limit to the hard limit, thus failing to run.
- ulimit -n 65536
- # allow to catch coredumps
- ulimit -c unlimited
- make reg-tests VTEST_PROGRAM=${{ github.workspace }}/vtest/vtest REGTESTS_TYPES=default,bug,devel
- - name: Show VTest results
- if: ${{ failure() && steps.vtest.outcome == 'failure' }}
- run: |
- for folder in ${TMPDIR:-/tmp}/haregtests-*/vtc.*; do
- printf "::group::"
- cat $folder/INFO
- cat $folder/LOG
- echo "::endgroup::"
- done
- exit 1
- - name: Run Unit tests
- id: unittests
- run: |
- make unit-tests
- - name: Show coredumps
- if: ${{ failure() && steps.vtest.outcome == 'failure' }}
- run: |
- failed=false
- shopt -s nullglob
- for file in /tmp/core.*; do
- failed=true
- printf "::group::"
- gdb -ex 'thread apply all bt full' ./haproxy $file
- echo "::endgroup::"
- done
- if [ "$failed" = true ]; then
- exit 1;
- fi
- name: Compile HAProxy
run: |
make -j$(nproc) ERR=1 CC=gcc TARGET=linux-glibc \
- USE_QUIC=1 USE_OPENSSL=1 \
+ 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" \
ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/"