Skip to content

Commit

Permalink
GHA: Enable t_server_null tests
Browse files Browse the repository at this point in the history
Change-Id: I86203b8f9a6d3cfc5e56d3ce9452af694fd11011
Signed-off-by: Frank Lichtenheld <[email protected]>
Acked-by: Gert Doering <[email protected]>
Message-Id: <[email protected]>
URL: https://www.mail-archive.com/[email protected]/msg29231.html
Signed-off-by: Gert Doering <[email protected]>
  • Loading branch information
flichtenheld authored and cron2 committed Sep 12, 2024
1 parent 45bef14 commit 6598590
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,11 @@ jobs:
run: ./configure --with-crypto-library=${{matrix.ssllib}} ${{matrix.extraconf}} --enable-werror
- name: make all
run: make -j3
- name: configure checks
if: ${{ matrix.extraconf != '--disable-management' }}
run: echo 'RUN_SUDO="sudo -E"' >tests/t_server_null.rc
- name: make check
run: make check VERBOSE=1
run: make -j3 check VERBOSE=1

ubuntu-clang-asan:
strategy:
Expand All @@ -199,8 +202,10 @@ jobs:
run: CFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=all -fno-omit-frame-pointer -O2" CC=clang ./configure --with-crypto-library=${{matrix.ssllib}} --enable-werror
- name: make all
run: make -j3
- name: configure checks
run: echo 'RUN_SUDO="sudo -E"' >tests/t_server_null.rc
- name: make check
run: make check VERBOSE=1
run: make -j3 check VERBOSE=1

macos:
strategy:
Expand Down Expand Up @@ -258,8 +263,10 @@ jobs:
run: ./configure --enable-werror ${{matrix.configureflags}} ${{matrix.configuressllib}}
- name: make all
run: make -j4
- name: configure checks
run: echo 'RUN_SUDO="sudo -E"' >tests/t_server_null.rc
- name: make check
run: make check VERBOSE=1
run: make -j4 check VERBOSE=1

msvc:
strategy:
Expand Down Expand Up @@ -369,8 +376,10 @@ jobs:
run: ./configure --with-crypto-library=openssl ${{matrix.configureflags}} --enable-werror
- name: make all
run: make -j3
- name: configure checks
run: echo 'RUN_SUDO="sudo -E"' >tests/t_server_null.rc
- name: make check
run: make check VERBOSE=1
run: make -j3 check VERBOSE=1

mbedtls3:
strategy:
Expand Down Expand Up @@ -422,5 +431,7 @@ jobs:
run: ./configure --with-crypto-library=mbedtls
- name: make all
run: make -j3
- name: configure checks
run: echo 'RUN_SUDO="sudo -E"' >tests/t_server_null.rc
- name: make check
run: make check VERBOSE=1
run: make -j3 check VERBOSE=1

0 comments on commit 6598590

Please sign in to comment.