Skip to content

Ensure get_all.sh script runs within its own directory #11

Ensure get_all.sh script runs within its own directory

Ensure get_all.sh script runs within its own directory #11

Workflow file for this run

name: Build Wheels
on: [push, pull_request]
jobs:
build-wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build the wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS_LINUX: x86_64
CIBW_BUILD: cp3*
CIBW_SKIP: cp36-* cp37-* *-musllinux*
CIBW_BEFORE_ALL_LINUX: yum install -y libuuid-devel
CIBW_BEFORE_BUILD: pip install pybind11
- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl