Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 648 Bytes

File metadata and controls

16 lines (12 loc) · 648 Bytes

run-cibuildwheel

An action to download and run cibuildwheel.

Usage

The following example yaml code will build a cp311 wheel for manylinux-x86_64 on Linux runners, amd64 on Windows runners, and x86_64 and arm64 on Macos runners.

- name: Run cibuildwheel
  uses: actions-ext/python/run-cibuildwheel@5f78fa2cadf4dad2a7cded3c72655bcdd3dda735
  with:
    version: '3.11'
    kind: 'cp'

NOTE: This is configured around the default GitHub Actions runners which support cross compilation, but musllinux and win32 builds are disabled to conserve CI resources.