Speed up windows builds
This commit is contained in:
7
.github/workflows/build-gurtca.yml
vendored
7
.github/workflows/build-gurtca.yml
vendored
@@ -79,7 +79,13 @@ jobs:
|
|||||||
.\vcpkg.exe integrate install
|
.\vcpkg.exe integrate install
|
||||||
}
|
}
|
||||||
cd C:\vcpkg
|
cd C:\vcpkg
|
||||||
|
$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
|
.\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
|
||||||
Reference in New Issue
Block a user