From 6fe67bce760384faab313a4fc8b946bb23025c2e Mon Sep 17 00:00:00 2001 From: phoenixbackrooms Date: Sun, 28 Sep 2025 11:50:01 +0300 Subject: [PATCH] Speed up windows builds --- .github/workflows/build-gurtca.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-gurtca.yml b/.github/workflows/build-gurtca.yml index 63f42f8..8f01a7b 100644 --- a/.github/workflows/build-gurtca.yml +++ b/.github/workflows/build-gurtca.yml @@ -79,7 +79,13 @@ jobs: .\vcpkg.exe integrate install } 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 - name: Set OpenSSL environment variables (Windows) @@ -105,4 +111,5 @@ jobs: with: name: gurtca-${{ matrix.platform }} path: artifacts/${{ matrix.platform }} - retention-days: 30 \ No newline at end of file + + retention-days: 30