install libiconv in github workflow for matrix.os windows-2019

This commit is contained in:
Mario Fink 2023-08-05 23:01:00 +02:00
parent b54979aa74
commit ecbae3f79b

View File

@ -40,6 +40,16 @@ jobs:
with:
name: wheel-config
path: python/
- name: Install iconv for Windows
if: matrix.os == 'windows-2019'
steps:
- name: Get vcpkg repo
run: git clone https://github.com/Microsoft/vcpkg.git
- name: Install vcpkg
run: .\vcpkg\bootstrap-vcpkg.bat
working-directory: vcpkg/
- name: Install required package libiconv
run: vcpkg install libiconv
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
working-directory: python/