0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-19 19:42:30 +02:00

GHA: Enable t_server_null tests

Change-Id: I86203b8f9a6d3cfc5e56d3ce9452af694fd11011
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20240912174910.21058-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg29231.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
Frank Lichtenheld 2024-09-12 19:49:10 +02:00 committed by Gert Doering
parent 45bef145f3
commit 65985905c5

View File

@ -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:
@ -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:
@ -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:
@ -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:
@ -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