Browse Source

[gha] msvc: use bits for downloading installers

Signed-off-by: r4sas <r4sas@i2pmail.org>
R4SAS 2 months ago
parent
commit
1a3d76f562
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
  1. 4
      .github/workflows/build-windows-msvc.yml

4
.github/workflows/build-windows-msvc.yml

@ -48,12 +48,12 @@ jobs: @@ -48,12 +48,12 @@ jobs:
- name: Install Boost
run: |
powershell -Command "(Invoke-WebRequest -UserAgent "Wget" -Uri https://sourceforge.net/projects/boost/files/boost-binaries/1.83.0/boost_1_83_0-msvc-14.3-64.exe/download -OutFile boost_1_83_0-msvc-14.3-64.exe)"
powershell -Command "(Start-BitsTransfer -Source https://sourceforge.net/projects/boost/files/boost-binaries/1.83.0/boost_1_83_0-msvc-14.3-64.exe/download -Destination boost_1_83_0-msvc-14.3-64.exe)"
./boost_1_83_0-msvc-14.3-64.exe /DIR="${{env.boost_path}}" /VERYSILENT /SUPPRESSMSGBOXES /SP-
- name: Install OpenSSL
run: |
powershell -Command "(Invoke-WebRequest -UserAgent "Wget" -Uri https://slproweb.com/download/Win64OpenSSL-3_2_1.exe -OutFile Win64OpenSSL-3_2_1.exe)"
powershell -Command "(Start-BitsTransfer -Source https://slproweb.com/download/Win64OpenSSL-3_2_1.exe -Destination Win64OpenSSL-3_2_1.exe)"
./Win64OpenSSL-3_2_1.exe /DIR="${{env.openssl_path}}" /TASKS="copytobin" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
# Windows image already has OpenSSL installed to %programfiles%\OpenSSL, so we using that path, not OpenSSL-Win64

Loading…
Cancel
Save