-
Notifications
You must be signed in to change notification settings - Fork 36
111 lines (98 loc) · 2.88 KB
/
publish.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: meiosis
on:
push:
branches:
- master
workflow_dispatch:
# for debugging
# pull_request:
# types: [opened, reopened, synchronize, ready_for_review, review_requested]
jobs:
build:
strategy:
max-parallel: 4
# let some wheels complete even if others fail
fail-fast: false
matrix:
include:
- os: ubuntu-latest
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
python_version: '3.8'
python: 38
- os: ubuntu-latest
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
python_version: '3.9'
python: 39
- os: ubuntu-latest
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
python_version: '3.10'
python: 310
- os: windows-latest
platform_id: win_amd64
python_version: '3.8'
python: 38
- os: windows-latest
platform_id: win_amd64
python_version: '3.9'
python: 39
- os: windows-latest
platform_id: win_amd64
python_version: '3.10'
python: 310
# macos x86_64 (intel)
- os: macos-13
platform_id: macosx_x86_64
python_version: '3.8'
python: 38
- os: macos-13
platform_id: macosx_x86_64
python_version: '3.9'
python: 39
- os: macos-13
platform_id: macosx_x86_64
python_version: '3.10'
python: 310
# macos arm64 (apple silicon)
- os: macos-14
platform_id: macosx_arm64
python_version: '3.8'
python: 38
- os: macos-14
platform_id: macosx_arm64
python_version: '3.9'
python: 39
- os: macos-14
platform_id: macosx_arm64
python_version: '3.10'
python: 310
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Installation
run:
|
python -m pip install --upgrade pip
pip install "cython<3.0"
pip install "numpy<2"
pip install -e .
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.19.2
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }}
CIBW_ARCHS: all
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_image }}
CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.manylinux_image }}
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-cp${{ matrix.python }}-${{ matrix.platform_id }}
path: ./wheelhouse/*.whl