From 953fa5b59afb04c3c74ed82d7bace65c13cd8baa Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Sat, 9 Nov 2024 11:41:44 +1100 Subject: [PATCH] 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. --- .github/configs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/configs b/.github/configs index 78f7249977c0..376398a5b208 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" ;;