From: Darren Tucker Date: Sat, 9 Nov 2024 00:41:44 +0000 (+1100) Subject: Disable security key for bigendian interop. X-Git-Tag: V_10_0_P1~142 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F403%2Fhead;p=thirdparty%2Fopenssh-portable.git Disable security key for bigendian interop. It doesn't currently work. It's not clear why, but I suspect sk-dummy.so ends up being built for the wrong architecture. --- diff --git a/.github/configs b/.github/configs index 78f724997..376398a5b 100755 --- a/.github/configs +++ b/.github/configs @@ -266,6 +266,10 @@ case "${TARGET_HOST}" in # Native linker is not great with PIC so OpenSSL is built w/out. CONFIGFLAGS="${CONFIGFLAGS} --disable-security-key" ;; + fbsd14-ppc64) + # Disable security key tests for bigendian interop test. + CONFIGFLAGS="${CONFIGFLAGS} --disable-security-key" + ;; hurd) SKIP_LTESTS="forwarding multiplex proxy-connect hostkey-agent agent-ptrace" ;;