From 68c02e6ab7dbe8eee6651873ea60a1303b0c3d22 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Wed, 4 Jun 2025 14:32:12 +0200 Subject: [PATCH] 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 --- .github/workflows/non-native.yml | 2 +- tests/http2-server.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.2