From 3532cc4432f4e44914507096d6334aec5f0c6cca Mon Sep 17 00:00:00 2001 From: Hideki Miyazaki Date: Fri, 4 Sep 2026 12:50:16 -0400 Subject: [PATCH] windows-check: Print config.log on mingw-regress failure The mingw-regress job's wolfssh configure step fails with "libwolfssl is required for wolfssh" even though libwolfssl.a is installed at the expected path. AC_CHECK_LIB only reports pass/fail; dump config.log on failure to see the actual link error. --- .github/workflows/windows-check.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/windows-check.yml b/.github/workflows/windows-check.yml index 11292e22..8199988a 100644 --- a/.github/workflows/windows-check.yml +++ b/.github/workflows/windows-check.yml @@ -294,3 +294,8 @@ jobs: make -j$(nproc) tests/regress.test tests/unit.test ./tests/regress.test ./tests/unit.test + + - name: Show config.log on failure + if: failure() + working-directory: wolfssh + run: cat config.log