Skip to content

Commit 3fea8a4

Browse files
authored
Merge pull request #294 from jonathangreen/feature/ci-build-wheel
Add workflow to build wheels using cibuildwheel
2 parents a41faaa + 6741ff8 commit 3fea8a4

File tree

2 files changed

+159
-0
lines changed

2 files changed

+159
-0
lines changed

.github/workflows/wheels.yml

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
name: Wheel build
2+
3+
on:
4+
release:
5+
types: [created]
6+
schedule:
7+
# ┌───────────── minute (0 - 59)
8+
# │ ┌───────────── hour (0 - 23)
9+
# │ │ ┌───────────── day of the month (1 - 31)
10+
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
11+
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
12+
# │ │ │ │ │
13+
- cron: "42 3 * * 4"
14+
push:
15+
pull_request:
16+
workflow_dispatch:
17+
18+
permissions: {}
19+
20+
jobs:
21+
sdist:
22+
runs-on: ubuntu-latest
23+
24+
permissions:
25+
contents: write
26+
27+
steps:
28+
- uses: actions/[email protected]
29+
with:
30+
fetch-depth: 0
31+
32+
- name: Set up Python
33+
uses: actions/[email protected]
34+
with:
35+
python-version: "3.x"
36+
37+
- name: Install build dependencies
38+
run: |
39+
pip install --upgrade pip setuptools wheel
40+
41+
- name: Package source dist
42+
run: python setup.py sdist
43+
44+
- name: Install test dependencies
45+
run: |
46+
sudo apt-get update -y -q
47+
sudo apt-get install -y -q libxml2-dev libxslt1-dev libxmlsec1-dev libxmlsec1-openssl opensc softhsm2 libengine-pkcs11-openssl
48+
pip install --upgrade -r requirements-test.txt --no-binary lxml
49+
pip install dist/xmlsec-$(python setup.py --version).tar.gz
50+
51+
- name: Run tests
52+
run: pytest -v --color=yes
53+
54+
- name: Upload sdist
55+
uses: actions/[email protected]
56+
with:
57+
name: sdist
58+
path: dist/*.tar.gz
59+
60+
generate-wheels-matrix:
61+
# Create a matrix of all architectures & versions to build.
62+
# This enables the next step to run cibuildwheel in parallel.
63+
# From https://iscinumpy.dev/post/cibuildwheel-2-10-0/#only-210
64+
name: Generate wheels matrix
65+
runs-on: ubuntu-latest
66+
outputs:
67+
include: ${{ steps.set-matrix.outputs.include }}
68+
steps:
69+
- uses: actions/checkout@v4
70+
- name: Install cibuildwheel
71+
# Nb. keep cibuildwheel version pin consistent with job below
72+
run: pipx install cibuildwheel==2.16.5
73+
- id: set-matrix
74+
# Once we have the windows build figured out, it can be added here
75+
# by updating the matrix to include windows builds as well.
76+
# See example here:
77+
# https://github.com/lxml/lxml/blob/3ccc7d583e325ceb0ebdf8fc295bbb7fc8cd404d/.github/workflows/wheels.yml#L95C1-L106C51
78+
run: |
79+
MATRIX=$(
80+
{
81+
cibuildwheel --print-build-identifiers --platform linux \
82+
| jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \
83+
&& cibuildwheel --print-build-identifiers --platform macos \
84+
| jq -nRc '{"only": inputs, "os": "macos-latest"}'
85+
} | jq -sc
86+
)
87+
echo "include=$MATRIX"
88+
echo "include=$MATRIX" >> $GITHUB_OUTPUT
89+
90+
build_wheels:
91+
name: Build for ${{ matrix.only }}
92+
needs: generate-wheels-matrix
93+
runs-on: ${{ matrix.os }}
94+
95+
strategy:
96+
fail-fast: false
97+
matrix:
98+
include: ${{ fromJson(needs.generate-wheels-matrix.outputs.include) }}
99+
100+
steps:
101+
- name: Check out the repo
102+
uses: actions/checkout@v4
103+
with:
104+
fetch-depth: 0
105+
106+
- name: Set up QEMU
107+
if: runner.os == 'Linux'
108+
uses: docker/setup-qemu-action@v3
109+
with:
110+
platforms: all
111+
112+
- name: Build wheels
113+
uses: pypa/[email protected]
114+
with:
115+
only: ${{ matrix.only }}
116+
env:
117+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
118+
119+
- uses: actions/[email protected]
120+
with:
121+
path: ./wheelhouse/*.whl
122+
name: xmlsec-wheel-${{ matrix.only }}

pyproject.toml

+37
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,40 @@ known_third_party = ['lxml', 'pytest', '_pytest', 'hypothesis']
4545

4646
[build-system]
4747
requires = ['setuptools>=42', 'wheel', 'setuptools_scm[toml]>=3.4', "pkgconfig>=1.5.1", "lxml>=3.8, !=4.7.0"]
48+
49+
[tool.cibuildwheel]
50+
build-verbosity = 1
51+
build-frontend = "build"
52+
skip = [
53+
"pp*",
54+
"*-musllinux_i686",
55+
# LXML doesn't publish wheels for these platforms, which makes it
56+
# difficult for us to build wheels, so we exclude them.
57+
"cp36-manylinux_aarch64",
58+
"cp37-manylinux_aarch64",
59+
"cp36-musllinux_aarch64",
60+
"cp37-musllinux_aarch64",
61+
]
62+
test-command = "pytest -v --color=yes {package}/tests"
63+
before-test = "pip install -r requirements-test.txt"
64+
test-skip = "*-macosx_arm64"
65+
66+
[tool.cibuildwheel.environment]
67+
PYXMLSEC_STATIC_DEPS = "true"
68+
69+
[tool.cibuildwheel.linux]
70+
archs = ["x86_64", "aarch64", "i686"]
71+
environment-pass = [
72+
"PYXMLSEC_LIBXML2_VERSION",
73+
"PYXMLSEC_LIBXSLT_VERSION",
74+
"PYXMLSEC_STATIC_DEPS",
75+
"GH_TOKEN"
76+
]
77+
78+
[tool.cibuildwheel.macos]
79+
archs = ["x86_64", "arm64"]
80+
before-all = "brew install perl"
81+
82+
[[tool.cibuildwheel.overrides]]
83+
select = "*-manylinux*"
84+
before-all = "yum install -y perl-core"

0 commit comments

Comments
 (0)