Skip to content

Commit 7c327dd

Browse files
committed
Don't install OpenSSL on Windows by default
1 parent c704bcc commit 7c327dd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ jobs:
5858
matrix:
5959
os: [macos-latest, windows-latest]
6060
steps:
61-
- run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
62-
if: runner.os == 'Windows'
63-
- run: vcpkg install openssl:x64-windows-static-md
64-
if: runner.os == 'Windows'
61+
# if your project needs OpenSSL, uncommment this to fix Windows builds.
62+
# it's commented out by default as tthe install command takes 5-10m.
63+
# - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
64+
# if: runner.os == 'Windows'
65+
# - run: vcpkg install openssl:x64-windows-static-md
66+
# if: runner.os == 'Windows'
6567
- uses: actions/checkout@v3
6668
with:
6769
submodules: true

0 commit comments

Comments
 (0)