Skip to content

Commit cbd1dfd

Browse files
committed
Windows runner copy ssl dlls for specific python version
1 parent 3681b6c commit cbd1dfd

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/ci-windows.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,19 @@ jobs:
250250
pip install -r tests/requirements.txt
251251
pytest -s tests
252252
253+
- name: Copy SSL DLLs
254+
shell: pwsh
255+
if: ${{ github.event_name == 'pull_request' }}
256+
run: |
257+
Copy-Item "C:\Miniconda\envs\3.14\Library\bin\libssl*.dll" "C:\Miniconda\envs\3.14\DLLs\"
258+
Copy-Item "C:\Miniconda\envs\3.14\Library\bin\libcrypto*.dll" "C:\Miniconda\envs\3.14\DLLs\"
259+
253260
- name: Wheel on pull request only
254261
shell: bash -l {0}
255262
if: ${{ github.event_name == 'pull_request' }}
256263
run: |
257264
cd pysam
258265
conda deactivate
259266
conda activate ${{ matrix.python-version }}
260-
conda install --force-reinstall openssl python=${{ matrix.python-version }}
261267
python -m pip install --upgrade build
262268
python -m build --wheel

0 commit comments

Comments
 (0)