Compare commits

..

No commits in common. "57027e234e10e85d0d8f3a2fe1c27d5db1b37775" and "ecbae3f79b479c1befbcc934c6b1096aef7bdcde" have entirely different histories.

2 changed files with 9 additions and 8 deletions

View File

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

View File

@ -233,6 +233,3 @@ can be found in the `python/examples` folder.
- https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsrun - https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml - https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml
- https://cibuildwheel.readthedocs.io/en/stable/deliver-to-pypi/ - https://cibuildwheel.readthedocs.io/en/stable/deliver-to-pypi/
- https://www.gnu.org/software/libiconv/
- https://vcpkg.io/en/packages.html
- https://vcpkg.io/en/getting-started