-
Notifications
You must be signed in to change notification settings - Fork 10
92 lines (77 loc) · 2.35 KB
/
Copy pathwheels.yml
File metadata and controls
92 lines (77 loc) · 2.35 KB
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
name: Wheel builder
on: [workflow_dispatch]
jobs:
build_wheels:
name: Build wheels for ${{ matrix.os }}
runs-on: ${{ matrix.runs-on }}
strategy:
matrix:
include:
- os: linux-intel
runs-on: ubuntu-latest
- os: linux-arm
runs-on: ubuntu-24.04-arm
- os: windows-intel
runs-on: windows-latest
- os: macos-intel
# macos-15-intel is the latest x86_64 runner
runs-on: macos-15-intel
- os: macos-arm
# macos-14+ (including latest) are ARM64 runners
runs-on: macos-latest
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.22.0
- name: Build wheels
env:
CIBW_SKIP: pp* *-musllinux_* *-manylinux_i686 *-win32 # skip PyPy, musllinux, 32-bit Linux & win32 builds
CIBW_ARCHS_MACOS: auto
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*
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