Skip to content

Workflow file for this run

name: wheels
on: [push, pull_request]
jobs:
wheels:
runs-on: ${{ matrix.platform[0] }}
strategy:
fail-fast: false
matrix:
platform:
- [ubuntu-latest, manylinux_x86_64]
python: ['cp311', 'cp312']
steps:
- uses: actions/checkout@v4
- name: Building wheel
uses: pypa/[email protected]
env:
CIBW_BUILD: "${{ matrix.python }}-${{ matrix.platform[1] }}"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28_x86_64"
CIBW_BEFORE_ALL_LINUX: "dnf install -y clang libffi-devel eigen3-devel"