diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 74819d608..d4d107538 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -40,7 +40,7 @@ jobs: env: ARTIFACT: webui-windows-${{ matrix.cc }}-x64 WEBUI_TLS_INCLUDE: "C:\\Program Files\\OpenSSL\\include" - WEBUI_TLS_LIB: "C:\\Program Files\\OpenSSL\\lib" + WEBUI_TLS_LIB: "C:\\Program Files\\OpenSSL\\lib\\VC\\x64\\MD" steps: - uses: actions/checkout@v4 - uses: actions/cache/restore@v4 @@ -48,6 +48,13 @@ jobs: path: bridge/webui_bridge.h key: ${{ runner.os }}-${{ github.sha }}-bridge fail-on-cache-miss: true + # - name: Install OpenSSL + # shell: pwsh + # run: | + # irm https://raw.githubusercontent.com/actions/runner-images/refs/heads/main/images/windows/scripts/build/Install-OpenSSL.ps1 | iex + - name: Verify OpenSSL + shell: pwsh + run: dir "C:\Program Files\OpenSSL\lib\VC\x64\MD" - uses: microsoft/setup-msbuild@v2 - uses: ilammy/msvc-dev-cmd@v1 if: matrix.cc == 'msvc'