mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-12-25 19:41:37 +01:00
75 lines
2.4 KiB
YAML
75 lines
2.4 KiB
YAML
name: WolfSSL
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 4"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install VTest
|
|
run: |
|
|
scripts/build-vtest.sh
|
|
- 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
|
|
- name: Install WolfSSL
|
|
run: env WOLFSSL_VERSION=git-master WOLFSSL_DEBUG=1 scripts/build-ssl.sh
|
|
- name: Compile HAProxy
|
|
run: |
|
|
make -j$(nproc) ERR=1 CC=gcc TARGET=linux-glibc \
|
|
USE_OPENSSL_WOLFSSL=1 USE_QUIC=1 \
|
|
SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include \
|
|
DEBUG="-DDEBUG_POOL_INTEGRITY" \
|
|
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 -v |awk 'NR==1{print $3}')" >> $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=../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: 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
|