2023-09-05 23:36:52 +00:00
|
|
|
name: AWS-LC
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * 4"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-06 14:57:29 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-09-05 23:36:52 +00:00
|
|
|
- name: Install VTest
|
|
|
|
run: |
|
|
|
|
scripts/build-vtest.sh
|
|
|
|
- name: Determine latest AWS-LC release
|
|
|
|
id: get_aws_lc_release
|
|
|
|
run: |
|
|
|
|
result=$(cd .github && python3 -c "from matrix import determine_latest_aws_lc; print(determine_latest_aws_lc(''))")
|
|
|
|
echo $result
|
|
|
|
echo "result=$result" >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache AWS-LC
|
|
|
|
id: cache_aws_lc
|
2024-02-08 18:55:23 +00:00
|
|
|
uses: actions/cache@v4
|
2023-09-05 23:36:52 +00:00
|
|
|
with:
|
|
|
|
path: '~/opt/'
|
|
|
|
key: ssl-${{ steps.get_aws_lc_release.outputs.result }}-Ubuntu-latest-gcc
|
|
|
|
- name: Install AWS-LC
|
|
|
|
if: ${{ steps.cache_ssl.outputs.cache-hit != 'true' }}
|
|
|
|
run: env ${{ steps.get_aws_lc_release.outputs.result }} scripts/build-ssl.sh
|
|
|
|
- name: Compile HAProxy
|
|
|
|
run: |
|
2024-06-14 10:18:32 +00:00
|
|
|
make -j$(nproc) ERR=1 CC=gcc TARGET=linux-glibc \
|
2023-10-04 15:03:34 +00:00
|
|
|
USE_OPENSSL_AWSLC=1 USE_QUIC=1 \
|
|
|
|
SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include \
|
2024-04-10 07:28:24 +00:00
|
|
|
DEBUG="-DDEBUG_POOL_INTEGRITY" \
|
2023-09-05 23:36:52 +00:00
|
|
|
ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/"
|
|
|
|
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
|
|
|
|
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}/haregtests-*/vtc.*; do
|
|
|
|
printf "::group::"
|
|
|
|
cat $folder/INFO
|
|
|
|
cat $folder/LOG
|
|
|
|
echo "::endgroup::"
|
|
|
|
done
|
|
|
|
exit 1
|