From 085ac3c0da1e22a6cab7409bf86de0ec54d992d1 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Thu, 24 Jun 2021 16:13:21 +0200 Subject: [PATCH] Analysis workflow, find mingw. --- .github/workflows/analysis_ports.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis_ports.yml b/.github/workflows/analysis_ports.yml index d8a0c4908..0b5612539 100644 --- a/.github/workflows/analysis_ports.yml +++ b/.github/workflows/analysis_ports.yml @@ -176,9 +176,18 @@ jobs: ls -l 'c:\Program Files' || echo nevermind echo 'Program Files (x86)' ls -l 'c:\Program Files (x86)' || echo nevermind + echo '/c/Program Files/OpenSSL' + ls -l '/c/Program Files/OpenSSL' || echo nevermind + echo '/' + ls -l '/' || echo nevermind + echo '/mingw64' + ls -l '/mingw64' || echo nevermind + echo '/mingw64/bin' + ls -l '/mingw64/bin' || echo nevermind + echo '/Users' + ls -l '/Users' || echo nevermind echo PATH="$PATH" - find / -name mingw32-make.exe - mingw32-configure --enable-debug --enable-static-exe --disable-flto + ./configure --enable-debug --enable-static-exe --disable-flto make make test - name: test_android