py lib #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: wheels | |
on: [push, pull_request] | |
jobs: | |
wheels: | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
platform: [ {os: "ubuntu-latest", target: "manylinux_x86_64", arch: "x86_64"}, | |
{os: "ubuntu-latest", target: "manylinux_aarch64", arch: "aarch64"}, | |
{os: "macos-14", target: "macosx_arm64", arch: "arm64"} ] | |
python: [ {cp: "cp311", py: "3.11"}, {cp: "cp312", py: "3.12"} ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Building wheel | |
uses: pypa/[email protected] | |
env: | |
CIBW_BUILD: "${{ matrix.python.cp }}-${{ matrix.platform.target }}" | |
CIBW_ARCHS: "${{ matrix.platform.arch }}" | |
CIBW_BEFORE_ALL_LINUX: "dnf install -y clang libffi-devel eigen3-devel python${{ matrix.python.py }}-devel" | |
CIBW_BEFORE_BUILD_MACOS: "brew install cmake && brew install zlib && brew install coreutils && brew install libarchive && brew install libtool && brew install eigen && brew install --cask gcc-arm-embedded && brew install gcc@13 && brew info eigen" |