Skip to content

Commit 4220400

Browse files
committed
build and publish binary wheels
1 parent 8dee8e9 commit 4220400

File tree

4 files changed

+249
-0
lines changed

4 files changed

+249
-0
lines changed

.circleci/config.yml

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
version: 2.1
2+
3+
parameters:
4+
REF:
5+
type: string
6+
default: ''
7+
description: Optional tag to build
8+
9+
jobs:
10+
arm-wheels:
11+
parameters:
12+
build:
13+
type: string
14+
image:
15+
type: string
16+
17+
machine:
18+
image: ubuntu-2204:current
19+
resource_class: arm.medium # two vCPUs
20+
21+
environment:
22+
CIBW_ARCHS: "aarch64"
23+
CIBW_MANYLINUX_AARCH64_IMAGE: "<< parameters.image >>"
24+
CIBW_MUSLLINUX_AARCH64_IMAGE: "<< parameters.image >>"
25+
CIBW_BUILD: "<< parameters.build >>"
26+
27+
steps:
28+
- checkout
29+
- run: sudo apt install -y --no-install-recommends nodejs
30+
- when:
31+
condition: << pipeline.parameters.REF >>
32+
steps:
33+
- run:
34+
name: Checkout branch/tag << pipeline.parameters.REF >>
35+
command: |
36+
echo "Switching to branch/tag << pipeline.parameters.REF >> if it exists"
37+
git checkout << pipeline.parameters.REF >> || true
38+
git pull origin << pipeline.parameters.REF >> || true
39+
- run:
40+
name: install cibuildwheel and other build reqs
41+
command: |
42+
python3 -m pip install --upgrade pip setuptools setuptools_scm[toml]
43+
python3 -m pip install -rcibw-requirements.txt
44+
45+
- run:
46+
name: pip freeze
47+
command: |
48+
python3 -m pip freeze
49+
50+
- run:
51+
name: list wheels
52+
command: |
53+
python3 -m cibuildwheel . --print-build-identifiers
54+
55+
- run:
56+
name: cibuildwheel
57+
command: |
58+
python3 -m cibuildwheel .
59+
60+
- store_test_results:
61+
path: test-results/
62+
63+
- store_artifacts:
64+
path: wheelhouse/
65+
66+
- when:
67+
condition:
68+
or:
69+
- matches:
70+
pattern: ".+"
71+
value: "<< pipeline.git.tag >>"
72+
- << pipeline.parameters.REF >>
73+
steps:
74+
- run:
75+
environment:
76+
TWINE_NONINTERACTIVE: "1"
77+
command: |
78+
python3 -m pip install twine
79+
python3 -m twine upload --verbose --skip-existing wheelhouse/*
80+
81+
workflows:
82+
wheels: # This is the name of the workflow, feel free to change it to better match your workflow.
83+
# Inside the workflow, you define the jobs you want to run.
84+
jobs:
85+
- arm-wheels:
86+
name: arm-wheels-manylinux_2_28
87+
filters:
88+
tags:
89+
only: /.*/
90+
build: "*manylinux*"
91+
image: quay.io/pypa/manylinux_2_28_aarch64
92+
- arm-wheels:
93+
name: arm-wheels-musllinux_1_1
94+
filters:
95+
tags:
96+
only: /.*/
97+
build: "*musllinux*"
98+
image: quay.io/pypa/musllinux_1_1_aarch64
99+
- arm-wheels:
100+
name: arm-wheels-musllinux_1_2
101+
filters:
102+
tags:
103+
only: /.*/
104+
build: "*musllinux*"
105+
image: quay.io/pypa/musllinux_1_2_aarch64

.github/workflows/wheels.yml

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
name: Python package build and publish
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch: {}
7+
repository_dispatch: {}
8+
pull_request:
9+
push:
10+
branches:
11+
- main
12+
13+
concurrency:
14+
group: wheels-${{ github.event.pull_request.number || github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build_wheels:
19+
name: ${{ matrix.image }} wheels
20+
runs-on: ubuntu-24.04
21+
strategy:
22+
matrix:
23+
include:
24+
- image: manylinux_2_28_x86_64
25+
build: "*manylinux*"
26+
- image: musllinux_1_1_x86_64
27+
build: "*musllinux*"
28+
- image: musllinux_1_2_x86_64
29+
build: "*musllinux*"
30+
31+
steps:
32+
- uses: actions/checkout@v4
33+
if: ${{ github.event_name != 'repository_dispatch' }}
34+
with:
35+
fetch-depth: 0 # slow, but gets all the tags
36+
- uses: actions/checkout@v4
37+
if: ${{ github.event_name == 'repository_dispatch' }}
38+
with:
39+
fetch-depth: 0 # slow, but gets all the tags
40+
ref: ${{ github.event.client_payload.ref }}
41+
42+
# - name: Set up QEMU
43+
# if: runner.os == 'Linux'
44+
# uses: docker/setup-qemu-action@v2
45+
# with:
46+
# platforms: all
47+
48+
- name: Build wheels
49+
uses: pypa/[email protected]
50+
env:
51+
CIBW_BUILD: ${{ matrix.build }}
52+
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/${{ matrix.image }}
53+
CIBW_MUSLLINUX_X86_64_IMAGE: quay.io/pypa/${{ matrix.image }}
54+
# configure cibuildwheel to build native 64-bit archs ('auto64'), and some
55+
# emulated ones
56+
# Linux arm64 wheels are built on circleci
57+
CIBW_ARCHS_LINUX: auto64 # ppc64le s390x
58+
59+
- uses: actions/upload-artifact@v4
60+
with:
61+
name: artifact-${{ matrix.image }}
62+
path: ./wheelhouse/*.whl
63+
64+
build_sdist:
65+
name: Build source distribution
66+
runs-on: ubuntu-24.04
67+
steps:
68+
- uses: actions/checkout@v4
69+
if: ${{ github.event_name != 'repository_dispatch' }}
70+
with:
71+
fetch-depth: 0 # slow, but gets all the tags
72+
- uses: actions/checkout@v4
73+
if: ${{ github.event_name == 'repository_dispatch' }}
74+
with:
75+
fetch-depth: 0 # slow, but gets all the tags
76+
ref: ${{ github.event.client_payload.ref }}
77+
78+
- name: Build sdist
79+
run: pipx run build --sdist
80+
81+
- uses: actions/upload-artifact@v4
82+
with:
83+
name: artifact-source
84+
path: dist/*.tar.gz
85+
86+
build_wheels_macos:
87+
name: Build wheels on ${{ matrix.os }}
88+
runs-on: ${{ matrix.os }}
89+
strategy:
90+
matrix:
91+
# macos-13 is an intel runner, macos-14 is apple silicon
92+
os: [macos-13, macos-14]
93+
steps:
94+
- uses: actions/checkout@v4
95+
if: ${{ github.event_name != 'repository_dispatch' }}
96+
with:
97+
fetch-depth: 0 # slow, but gets all the tags
98+
- uses: actions/checkout@v4
99+
if: ${{ github.event_name == 'repository_dispatch' }}
100+
with:
101+
fetch-depth: 0 # slow, but gets all the tags
102+
ref: ${{ github.event.client_payload.ref }}
103+
104+
- name: Build wheels
105+
uses: pypa/[email protected]
106+
107+
- uses: actions/upload-artifact@v4
108+
with:
109+
name: artifact-${{ matrix.os }}-${{ strategy.job-index }}
110+
path: ./wheelhouse/*.whl
111+
112+
upload_pypi:
113+
needs: [build_wheels, build_sdist]
114+
runs-on: ubuntu-24.04
115+
environment: deploy
116+
permissions:
117+
id-token: write
118+
if: (github.event_name == 'release' && github.event.action == 'published') || (github.event_name == 'repository_dispatch' && github.event.client_payload.publish_wheel == true)
119+
steps:
120+
- uses: actions/download-artifact@v4
121+
with:
122+
# unpacks default artifact into dist/
123+
pattern: artifact-*
124+
merge-multiple: true
125+
path: dist
126+
127+
- name: Publish package distributions to PyPI
128+
uses: pypa/gh-action-pypi-publish@release/v1
129+
with:
130+
skip-existing: true

cibw-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cibuildwheel==2.21.3

pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,19 @@ build-backend = "setuptools.build_meta"
1717
[tool.setuptools_scm]
1818
write_to = "cwltool/_version.py"
1919

20+
[tool.cibuildwheel]
21+
test-command = "python -m pytest -n 2 --junitxml={project}/test-results/junit_$(python -V | awk '{print $2}')_${AUDITWHEEL_PLAT}.xml --pyargs cwltool"
22+
test-requires = "-r test-requirements.txt"
23+
test-extras = "deps"
24+
skip = "pp*"
25+
# ^ skip building wheels on PyPy (any version)
26+
build-verbosity = 1
27+
environment = { CWLTOOL_USE_MYPYC="1", MYPYPATH="$(pwd)/mypy-stubs" }
28+
29+
# Install system library
30+
[tool.cibuildwheel.linux]
31+
before-all = "yum install -y libxml2-devel libxslt-devel || apt-get install -y --no-install-recommends libxml2-dev libxslt-dev"
32+
2033
[tool.black]
2134
line-length = 100
2235
target-version = [ "py39" ]

0 commit comments

Comments
 (0)