Skip to content

Disable all pypy builds for now due to openblas/blas/lapack trouble #35

Disable all pypy builds for now due to openblas/blas/lapack trouble

Disable all pypy builds for now due to openblas/blas/lapack trouble #35

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.9]
#if: startsWith(github.event.head_commit.message, 'Release')
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cffi cibuildwheel wheel
- name: Build and test wheels
env:
CIBW_ARCHS: "auto64"
CIBW_SKIP: "cp36-* cp37-* cp38-* cp312-* pp*"
CIBW_TEST_REQUIRES: cffi pytest librosa==0.10.0.post2
CIBW_TEST_COMMAND: "pytest {project}/tests"
run: |
python -m cibuildwheel --output-dir wheelhouse
- name: Save Wheels
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl