Skip to content

Commit

Permalink
Need to install libeay32.dll on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
garethgreenaway committed Aug 3, 2023
1 parent dd99b7c commit b662057
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -199,6 +199,15 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Download libeay32.dll
run: |
export PY_LOC=$(which python.exe)
echo ${PY_LOC}
export PY_DIR=$(dirname ${PY_LOC})
echo ${PY_DIR}
curl https://repo.saltproject.io/windows/dependencies/64/libeay32.dll --output ${PY_DIR}/libeay32.dll
shell: bash

- name: Install Nox
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit b662057

Please sign in to comment.