From 4469727e39ad9a940722518fd6228d78ea137ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Bari=C5=A1i=C4=87?= Date: Wed, 19 Jun 2024 14:16:13 +0200 Subject: [PATCH] Fix openssl_root_dir path --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16bb9c67..121ee299 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,11 +55,12 @@ jobs: - name: Add mingw64 to PATH run: | # First make sure python would resolve to the windows native python, not mingw one - echo "C:/langs/msys64" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8 + echo "C:/msys64/mingw64/bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8 echo "${{ env.pythonLocation }}" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8 - uses: actions/checkout@v4 - name: Install mgconsole run: | + $env:OPENSSL_ROOT_DIR = "C:/langs/msys64/mingw64" mkdir build cd build cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..