From: Stefan Eissing Date: Wed, 4 Jun 2025 12:32:12 +0000 (+0200) Subject: CI: fix OpenBSD tests stall X-Git-Tag: rc-8_15_0-1~132 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=68c02e6ab7dbe8eee6651873ea60a1303b0c3d22;p=thirdparty%2Fcurl.git CI: fix OpenBSD tests stall impacket could not be used as it neeeds package six - openbsd does not find python3, add package six - http2-server.pl: only warn about unknown parameter if not empty string Closes #17532 --- diff --git a/.github/workflows/non-native.yml b/.github/workflows/non-native.yml index 6d36b43741..74adcbfebd 100644 --- a/.github/workflows/non-native.yml +++ b/.github/workflows/non-native.yml @@ -99,7 +99,7 @@ jobs: run: | # https://openbsd.app/ # https://www.openbsd.org/faq/faq15.html - time sudo pkg_add cmake ninja brotli openldap-client-- libssh2 libidn2 libpsl nghttp2 python3 py3-impacket + time sudo pkg_add cmake ninja brotli openldap-client-- libssh2 libidn2 libpsl nghttp2 py3-six py3-impacket time cmake -B bld -G Ninja \ -DCMAKE_UNITY_BUILD=ON -DCURL_TEST_BUNDLES=ON \ -DCURL_WERROR=ON \ diff --git a/tests/http2-server.pl b/tests/http2-server.pl index f1d9dbf310..8762000333 100755 --- a/tests/http2-server.pl +++ b/tests/http2-server.pl @@ -97,7 +97,7 @@ while(@ARGV) { shift @ARGV; } } - else { + elsif($ARGV[0]) { print STDERR "\nWarning: http2-server.pl unknown parameter: $ARGV[0]\n"; } shift @ARGV;