Speed up windows builds

This commit is contained in:
phoenixbackrooms
2025-09-28 11:50:01 +03:00
committed by GitHub
parent 040aea61b2
commit 6fe67bce76

View File

@@ -79,7 +79,13 @@ jobs:
.\vcpkg.exe integrate install .\vcpkg.exe integrate install
} }
cd C:\vcpkg cd C:\vcpkg
.\vcpkg.exe install openssl:x64-windows-static-md $installed = .\vcpkg.exe list | Select-String "openssl:x64-windows-static-md"
if (!$installed) {
Write-Host "Installing OpenSSL..."
.\vcpkg.exe install openssl:x64-windows-static-md
} else {
Write-Host "OpenSSL already installed: $installed"
}
shell: pwsh shell: pwsh
- name: Set OpenSSL environment variables (Windows) - name: Set OpenSSL environment variables (Windows)
@@ -105,4 +111,5 @@ jobs:
with: with:
name: gurtca-${{ matrix.platform }} name: gurtca-${{ matrix.platform }}
path: artifacts/${{ matrix.platform }} path: artifacts/${{ matrix.platform }}
retention-days: 30
retention-days: 30