Don't use main.yml since it has a limit of 20 jobs #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HaProxy Tests | |
# START OF COMMON SECTION | |
on: | |
push: | |
branches: [ 'master', 'main', 'release/**' ] | |
pull_request: | |
branches: [ '*' ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# END OF COMMON SECTION | |
jobs: | |
haproxy_check: | |
strategy: | |
fail-fast: false | |
matrix: | |
# List of refs to test | |
ref: [ master ] | |
name: ${{ matrix.ref }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build wolfSSL | |
uses: wolfSSL/actions-build-autotools-project@v1 | |
with: | |
path: wolfssl | |
configure: --enable-quic --enable-haproxy | |
install: true | |
- name: Checkout VTest | |
uses: actions/checkout@v4 | |
with: | |
repository: vtest/VTest | |
path: VTest | |
- name: Build VTest | |
working-directory: VTest | |
# Special flags due to: https://github.com/vtest/VTest/issues/12 | |
run: make FLAGS='-O2 -s -Wall' | |
- name: Checkout HaProxy | |
uses: actions/checkout@v4 | |
with: | |
repository: haproxy/haproxy | |
path: haproxy | |
ref: ${{ matrix.ref }} | |
- name: Build HaProxy | |
working-directory: haproxy | |
run: >- | |
make -j TARGET=linux-glibc DEBUG='-DDEBUG_MEMORY_POOLS -DDEBUG_STRICT' | |
USE_OPENSSL_WOLFSSL=1 USE_QUIC=1 SSL_INC=$GITHUB_WORKSPACE/build-dir/include/ | |
SSL_LIB=$GITHUB_WORKSPACE/build-dir/lib/ ADDLIB=-Wl,-rpath=$GITHUB_WORKSPACE/build-dir/lib | |
- name: Test HaProxy | |
working-directory: haproxy | |
run: make reg-tests reg-tests/ssl VTEST_PROGRAM=$GITHUB_WORKSPACE/VTest/vtest | |