Run the new make unit-tests on the CI. --- .github/workflows/aws-lc.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/aws-lc.yml b/.github/workflows/aws-lc.yml index f0d847f6f..b22e823db 100644 --- a/.github/workflows/aws-lc.yml +++ b/.github/workflows/aws-lc.yml @@ -41,7 +41,7 @@ jobs: make -j$(nproc) ERR=1 CC=gcc TARGET=linux-glibc \ USE_OPENSSL_AWSLC=1 USE_QUIC=1 \ SSL_LIB=${HOME}/opt/lib SSL_INC=${HOME}/opt/include \ - DEBUG="-DDEBUG_POOL_INTEGRITY" \ + DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" \ ADDLIB="-Wl,-rpath,/usr/local/lib/ -Wl,-rpath,$HOME/opt/lib/" sudo make install - name: Show HAProxy version @@ -61,6 +61,10 @@ jobs: # allow to catch coredumps ulimit -c unlimited make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel + - name: Run Unit tests + id: unittests + run: | + make unit-tests - name: Show VTest results if: ${{ failure() && steps.vtest.outcome == 'failure' }} run: | -- 2.46.0.windows.1