Don't install OpenSSL on Windows by default
This commit is contained in:
parent
c704bcc656
commit
7c327ddf5b
1 changed files with 6 additions and 4 deletions
10
.github/workflows/test.yml
vendored
10
.github/workflows/test.yml
vendored
|
|
@ -58,10 +58,12 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest]
|
os: [macos-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
|
# if your project needs OpenSSL, uncommment this to fix Windows builds.
|
||||||
if: runner.os == 'Windows'
|
# it's commented out by default as tthe install command takes 5-10m.
|
||||||
- run: vcpkg install openssl:x64-windows-static-md
|
# - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
|
||||||
if: runner.os == 'Windows'
|
# if: runner.os == 'Windows'
|
||||||
|
# - run: vcpkg install openssl:x64-windows-static-md
|
||||||
|
# if: runner.os == 'Windows'
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue