From e68e0135a85bc3b450b2763521c485824b5c8031 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Mon, 17 May 2021 13:42:51 -0500 Subject: [PATCH] WIP: attempt to identify problem by using mingw-w64-x86_64-ntldd --- .github/workflows/chat.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/chat.yml b/.github/workflows/chat.yml index 64825669..89058eb0 100644 --- a/.github/workflows/chat.yml +++ b/.github/workflows/chat.yml @@ -70,10 +70,19 @@ jobs: unzip mingw-w64-x86_64-toolchain mingw-w64-x86_64-ncurses + mingw-w64-x86_64-ntldd mingw-w64-x86_64-openssl mingw-w64-x86_64-pcre mingw-w64-x86_64-rust + - name: Check stuff with ntldd + if: matrix.platform.os == 'windows' + run: | + ntldd /mingw64/bin/cargo.exe || true + ls /mingw64/bin/rust*.exe | (xargs ntldd || true) + ls /mingw64/bin/rust*.dll | (xargs ntldd || true) + exit 1 + - uses: actions/checkout@v2 with: fetch-depth: 0