-
Notifications
You must be signed in to change notification settings - Fork 8
31 lines (26 loc) · 981 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-13, macos-14, windows-2019]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.19.2
env:
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*"
# Skip Python 2.7 and 3.5, 32 bit Linux, and PyPy
CIBW_SKIP: "*-manylinux_i686 *musllinux* pp*"
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.12
CIBW_BEFORE_BUILD: pip install cython
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --strip -w {dest_dir} {wheel}
CIBW_TEST_COMMAND: python -m spherogram.test
- uses: actions/upload-artifact@v4
with:
name: spherogram_${{matrix.os}}_wheels
path: ./wheelhouse/*.whl