Skip to content

Commit 588fa49

Browse files
committed
ci: fix the problem with the wrong python version in the macOS wheels
See zxing-cpp#695. This changeset hopefully fixed both issues: * module compiled for the wrong python version * c++20 support for macOS Also: actually do the upload-artifacts@v4 update and drop the pre-build binary support for Python 3.8.
1 parent f7c9de4 commit 588fa49

File tree

2 files changed

+23
-7
lines changed

2 files changed

+23
-7
lines changed

.github/workflows/publish-python.yml

+22-6
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,37 @@ jobs:
2626

2727
steps:
2828
- uses: actions/checkout@v4
29+
with:
30+
fetch-depth: 0
2931

3032
- name: Set up Python
3133
uses: actions/setup-python@v5
3234
with:
3335
python-version: '3.12'
3436

3537
- name: Install cibuildwheel
36-
run: python3 -m pip install cibuildwheel==2.16.2
38+
run: python3 -m pip install cibuildwheel==2.16.5
3739

3840
- name: Build wheels
3941
run: python3 -m cibuildwheel --output-dir wheelhouse wrappers/python
4042
env:
41-
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* cp312-*
43+
# TODO: setup a "BEFORE" cmake build and link the python module to the prebuild libZXing.a
44+
# see https://github.com/YannickJadoul/Parselmouth/blob/523c117aa780184345121f6ff8315670bc7d4d94/.github/workflows/wheels.yml#L120
45+
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-*
4246
CIBW_SKIP: "*musllinux*"
4347
# the default maylinux2014 image does not contain a c++20 compiler, see https://github.com/pypa/manylinux
4448
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux_2_28_x86_64
49+
# CIBW_ARCHS_MACOS: "x86_64 arm64"
4550
CIBW_ARCHS_MACOS: universal2
4651
CIBW_ENVIRONMENT_MACOS: CMAKE_OSX_ARCHITECTURES="arm64;x86_64"
52+
# the default macOS target version is 10.9 which does not support c++20 coroutines
53+
MACOSX_DEPLOYMENT_TARGET: "10.13"
54+
CIBW_BUILD_VERBOSITY: 1
4755

48-
- uses: actions/upload-artifact@v3 # v4 breaks the build, see https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md
56+
- name: Upload wheels
57+
uses: actions/upload-artifact@v4
4958
with:
59+
name: cibw-wheels-${{ matrix.os }}
5060
path: ./wheelhouse/*.whl
5161

5262
build-sdist:
@@ -55,7 +65,7 @@ jobs:
5565
steps:
5666
- uses: actions/checkout@v4
5767
with:
58-
submodules: recursive
68+
fetch-depth: 0
5969

6070
- name: Set up Python
6171
uses: actions/setup-python@v5
@@ -70,8 +80,10 @@ jobs:
7080
working-directory: wrappers/python
7181
run: python3 setup.py sdist
7282

73-
- uses: actions/upload-artifact@v3
83+
- name: Upload sdist
84+
uses: actions/upload-artifact@v4
7485
with:
86+
name: cibw-sdist
7587
path: wrappers/python/dist/*.tar.gz
7688

7789
upload-pypi:
@@ -89,8 +101,12 @@ jobs:
89101
steps:
90102
- uses: actions/download-artifact@v4
91103
with:
92-
name: artifact
104+
pattern: cibw-*
93105
path: dist
106+
merge-multiple: true
107+
108+
- name: List wheels
109+
run: ls dist
94110

95111
- uses: pypa/gh-action-pypi-publish@release/v1
96112
# with:

wrappers/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CMakeBuild(build_ext):
1818
def build_extension(self, ext):
1919
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
2020
cmake_args = ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir,
21-
'-DPYTHON_EXECUTABLE=' + sys.executable,
21+
'-DPython3_EXECUTABLE=' + sys.executable,
2222
'-DVERSION_INFO=' + self.distribution.get_version()]
2323

2424
cfg = 'Debug' if self.debug else 'Release'

0 commit comments

Comments
 (0)