Skip to content

Build library using cibuildwheel and conan #47

Build library using cibuildwheel and conan

Build library using cibuildwheel and conan #47

name: Python Unit Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure --color=always
#unit-tests:
# strategy:
# matrix:
# python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
# runs-on: ubuntu-latest
# steps:
# - name: Checkout source code
# uses: actions/checkout@v4
# - name: Install devbox
# uses: jetify-com/[email protected]
# - name: Setup devbox environment
# run: echo $PWD && echo ".ci/devbox-${{ matrix.python-version }}.json" && ln -sf ".ci/devbox-${{ matrix.python-version }}.json" devbox.json
# - name: Build and install
# run: devbox run python setup.py build_ext --inplace
# - name: Run unit-tests
# run: devbox run pytest -vv -s
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, macos-14]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: 'cp38-* cp39-*'
CIBW_SKIP: '*-musllinux_* *-manylinux_aarch64 *-manylinux_ppc64le *-manylinux_s390x'
CIBW_ARCH: 'all'
# env:
# CIBW_SOME_OPTION: value
# ...
# with:
# package-dir: .
# output-dir: wheelhouse
# config-file: "{package}/pyproject.toml"