Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: arvidn/libtorrent
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: de4f8dea4e0167162cb71ff6a2f2877c95346e3f
Choose a base ref
..
head repository: arvidn/libtorrent
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 01f81dff3bff997bca74f90af3b534082b1bd12d
Choose a head ref
Showing with 7 additions and 0 deletions.
  1. +7 −0 .github/workflows/cibuildwheel.yml
7 changes: 7 additions & 0 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
@@ -119,6 +119,13 @@ jobs:
- uses: docker/setup-qemu-action@v3
if: steps.cache-wheel.outputs.cache-hit != 'true' && runner.os == 'Linux'

- name: Install OpenSSL (win32)
if: ${{ endsWith(matrix.CIBW_BUILD, 'win32') }}
run: |
Remove-Item -Path "C:\Program Files\OpenSSL" -Force -Recurse
vcpkg install openssl:x86-windows
New-Item -Path "C:\Program Files\OpenSSL" -ItemType SymbolicLink -Value "C:\vcpkg\packages\openssl_x86-windows\"
- uses: pypa/cibuildwheel@v2.21.3
if: steps.cache-wheel.outputs.cache-hit != 'true'