Skip to content

Build python wheels #10

Build python wheels

Build python wheels #10

Workflow file for this run

name: Build python wheels
on:
workflow_dispatch
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Setup pip
run: |
python -m pip install --upgrade pip
python -m pip install cibuildwheel
- name: Build wheel
run: python -m cibuildwheel --output-dir dist/
env:
CIBW_BUILD: cp311-*
CIBW_BUILD_VERBOSITY: 1
CIBW_BEFORE_ALL: "yum install -y openblas-devel"
CIBW_CONFIG_SETTINGS: "cmake.define.ENABLE_PYTHON_EMBED=OFF"
#- uses: actions/upload-artifact@v2
# with:
# path: ./dist/*.whl