-
Notifications
You must be signed in to change notification settings - Fork 87
96 lines (96 loc) · 2.66 KB
/
build_wheel.yml
File metadata and controls
96 lines (96 loc) · 2.66 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
93
94
95
96
# Build Python wheels from source using cibuildwheel.
name: build_wheels
on: [push, pull_request]
permissions: read-all
jobs:
build_wheels_linux:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-24.04-arm
- os: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install build dependencies
run: |
sudo apt-get -y install autoconf automake autopoint build-essential git libtool pkg-config
- name: Prepare build
run: |
./synclibs.sh
./autogen.sh
./configure
make sources >/dev/null
- name: Build Python wheels
uses: pypa/cibuildwheel@v3.3.0
env:
CIBW_TEST_COMMAND: python tests/runtests.py
CIBW_TEST_SOURCES: tests
with:
package-dir: .
output-dir: dist
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: dist/*.whl
build_wheels_macos:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-14
- os: macos-15-intel
steps:
- uses: actions/checkout@v5
- name: Install build dependencies
run: |
brew update -q
brew install -q autoconf automake gettext gnu-sed libtool pkg-config || true
brew link --force gettext
ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize
- name: Prepare build
run: |
./synclibs.sh
./autogen.sh
./configure
make sources >/dev/null
- name: Build Python wheels
uses: pypa/cibuildwheel@v3.3.0
env:
CIBW_TEST_COMMAND: python tests/runtests.py
CIBW_TEST_SOURCES: tests
with:
package-dir: .
output-dir: dist
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: dist/*.whl
build_wheels_windows:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-11-arm
- os: windows-latest
steps:
- uses: actions/checkout@v5
- name: Prepare build
run: |
.\synclibs.ps1
.\autogen.ps1
- name: Build Python wheels
uses: pypa/cibuildwheel@v3.3.0
env:
CIBW_TEST_COMMAND: python tests/runtests.py
CIBW_TEST_SOURCES: tests
with:
package-dir: .
output-dir: dist
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: dist/*.whl