-
Notifications
You must be signed in to change notification settings - Fork 8
80 lines (65 loc) · 1.96 KB
/
wheels.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
name: Wheel builder
on: [workflow_dispatch]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-12]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: 'master'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0
- name: Build wheels
env:
CIBW_SKIP: pp* *-musllinux_* *-manylinux_i686 *-win32 # skip PyPy, musllinux, 32-bit Linux & win32 builds
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*
run: python -m cibuildwheel --output-dir wheelhouse
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: python-package-distributions-${{ matrix.os }}
path: wheelhouse/*.whl
package_source:
name: Package source distribution
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: 'master'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install build
run: python -m pip install build
- name: Run sdist
run: python -m build --sdist
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: python-package-distributions-src
path: ./dist/*.tar.gz
merge_build_files:
name: Merge build files
needs:
- build_wheels
- package_source
runs-on: ubuntu-22.04
steps:
- name: Merge build files
uses: actions/upload-artifact/merge@v4
with:
name: python-package-distributions-all
pattern: python-package-distributions-*
delete-merged: true