Skip to content

python: Build python wrapper wheels with github actions #6

python: Build python wrapper wheels with github actions

python: Build python wrapper wheels with github actions #6

Workflow file for this run

name: wheels
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-linux-meson:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- run: pip install auditwheel patchelf
- run: pip wheel . -w wheel
- run: auditwheel repair --plat=manylinux_2_17_x86_64 wheel/*.whl
build-macos13-meson:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- run: pip wheel . -w wheel
build-macos-meson:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- run: pip wheel . -w wheel
build-msvc-meson:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- run: pip wheel . -w wheel