Skip to content

Dont use clang

Dont use clang #94

Workflow file for this run

name: Build
on:
push:
branches:
- ci-test
tags:
- v*
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v3
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
env:
CIBW_SKIP: cp27-* pp27-* pp38-macosx_arm64 pp39-macosx_arm64 pp310-macosx_arm64
#CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
GITHUB_BUILDING_WHEELS: 1
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl