File tree 1 file changed +29
-1
lines changed
1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change 45
45
name : wheels-${{ matrix.name }}
46
46
path : ./wheelhouse/*.whl
47
47
48
+ build_wheels_ppc :
49
+ name : Build wheels for linux-ppc
50
+ runs-on : ubuntu-24.04
51
+
52
+ steps :
53
+ - uses : actions/checkout@v4
54
+
55
+ - uses : actions/setup-python@v5
56
+ with :
57
+ python-version : ' 3.11'
58
+
59
+ - uses : docker/setup-qemu-action@v3
60
+ with :
61
+ platforms : linux/ppc64le
62
+
63
+ - name : Install cibuildwheel
64
+ run : python -m pip install cibuildwheel==2.22.0
65
+
66
+ - name : Build wheels
67
+ run : python -m cibuildwheel --output-dir wheelhouse
68
+ env :
69
+ CIBW_ARCHS : ppc64le
70
+
71
+ - uses : actions/upload-artifact@v4
72
+ with :
73
+ name : wheels-linux-ppc
74
+ path : ./wheelhouse/*.whl
75
+
48
76
pypi :
49
77
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
50
- needs : [build_wheels]
78
+ needs : [build_wheels, build_wheels_ppc ]
51
79
runs-on : ubuntu-24.04
52
80
53
81
steps :
You can’t perform that action at this time.
0 commit comments