Skip to content

Commit

Permalink
🔨 [CI][create_release_executables] Try to make OpenSSL link staticall…
Browse files Browse the repository at this point in the history
…y on Windows
  • Loading branch information
JulesFouchy committed Jan 17, 2024
1 parent 51aaca0 commit 3374b7e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/create_release_executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,20 @@ jobs:
if: runner.os == 'Windows'
uses: ilammy/[email protected]

- name: Install Windows dependencies
- name: Install vcpkg
if: runner.os == 'Windows'
run: choco install openssl
run: |
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
.\bootstrap-vcpkg.bat
export VCPKG_ROOT=$PWD
shell: pwsh

- name: Install OpenSSL
if: runner.os == 'Windows'
run: |
.\vcpkg\vcpkg install openssl
shell: pwsh

- name: Install Linux dependencies
if: runner.os == 'Linux'
Expand Down

0 comments on commit 3374b7e

Please sign in to comment.