From 10f7d43703f95fdef94a2bc58cf79a0145545526 Mon Sep 17 00:00:00 2001 From: yhirose Date: Mon, 12 Jan 2026 23:09:03 -0500 Subject: [PATCH] Debug --- .github/workflows/test.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 687c4d9..0e0748b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -128,10 +128,12 @@ jobs: ls -la "$(brew --prefix mbedtls)/include" || true echo "Listing /opt/homebrew/opt/mbedtls/include:" ls -la /opt/homebrew/opt/mbedtls/include || true - echo "Listing /opt/homebrew/include:" - ls -la /opt/homebrew/include || true - echo "Make dry-run (show compile command):" - cd test && make -n test_mbedtls MBEDTLS_DIR=$(brew --prefix mbedtls) || true + echo "Listing /opt/homebrew/opt/mbedtls/include/mbedtls:" + ls -la "$(brew --prefix mbedtls)/include/mbedtls" || true + echo "Attempt to compile a minimal test including :" + echo '#include ' > /tmp/check_mbedtls.cpp + echo 'int main(){}' >> /tmp/check_mbedtls.cpp + clang++ -c /tmp/check_mbedtls.cpp -I"$(brew --prefix mbedtls)/include" -v -o /tmp/check_mbedtls.o || true - name: build and run tests (OpenSSL) if: matrix.tls_backend == 'openssl' run: cd test && make