@@ -26,27 +26,37 @@ jobs:
26
26
27
27
steps :
28
28
- uses : actions/checkout@v4
29
+ with :
30
+ fetch-depth : 0
29
31
30
32
- name : Set up Python
31
33
uses : actions/setup-python@v5
32
34
with :
33
35
python-version : ' 3.12'
34
36
35
37
- name : Install cibuildwheel
36
- run : python3 -m pip install cibuildwheel==2.16.2
38
+ run : python3 -m pip install cibuildwheel==2.16.5
37
39
38
40
- name : Build wheels
39
41
run : python3 -m cibuildwheel --output-dir wheelhouse wrappers/python
40
42
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-*
42
46
CIBW_SKIP : " *musllinux*"
43
47
# the default maylinux2014 image does not contain a c++20 compiler, see https://github.com/pypa/manylinux
44
48
CIBW_MANYLINUX_X86_64_IMAGE : quay.io/pypa/manylinux_2_28_x86_64
49
+ # CIBW_ARCHS_MACOS: "x86_64 arm64"
45
50
CIBW_ARCHS_MACOS : universal2
46
51
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
47
55
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
49
58
with :
59
+ name : cibw-wheels-${{ matrix.os }}
50
60
path : ./wheelhouse/*.whl
51
61
52
62
build-sdist :
55
65
steps :
56
66
- uses : actions/checkout@v4
57
67
with :
58
- submodules : recursive
68
+ fetch-depth : 0
59
69
60
70
- name : Set up Python
61
71
uses : actions/setup-python@v5
70
80
working-directory : wrappers/python
71
81
run : python3 setup.py sdist
72
82
73
- - uses : actions/upload-artifact@v3
83
+ - name : Upload sdist
84
+ uses : actions/upload-artifact@v4
74
85
with :
86
+ name : cibw-sdist
75
87
path : wrappers/python/dist/*.tar.gz
76
88
77
89
upload-pypi :
@@ -89,8 +101,12 @@ jobs:
89
101
steps :
90
102
- uses : actions/download-artifact@v4
91
103
with :
92
- name : artifact
104
+ pattern : cibw-*
93
105
path : dist
106
+ merge-multiple : true
107
+
108
+ - name : List wheels
109
+ run : ls dist
94
110
95
111
- uses : pypa/gh-action-pypi-publish@release/v1
96
112
# with:
0 commit comments