CI: github: add USE_QUIC=1 to aws-lc build

Feature are limited but aws-lc can now build with USE_QUIC=1.
This commit is contained in:
William Lallemand 2023-10-04 17:03:34 +02:00
parent 45174e4fdc
commit aaa326b571
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ jobs:
- name: Compile HAProxy - name: Compile HAProxy
run: | run: |
make -j$(nproc) CC=gcc TARGET=linux-glibc \ make -j$(nproc) CC=gcc TARGET=linux-glibc \
USE_OPENSSL_AWSLC=1 SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include \ USE_OPENSSL_AWSLC=1 USE_QUIC=1 \
SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include \
DEBUG="-DDEBUG_STRICT -DDEBUG_MEMORY_POOLS -DDEBUG_POOL_INTEGRITY" \ DEBUG="-DDEBUG_STRICT -DDEBUG_MEMORY_POOLS -DDEBUG_POOL_INTEGRITY" \
ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/" ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/"
sudo make install sudo make install