File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- master
7
+ - wheels-*
7
8
tags :
8
9
- ' v*'
9
10
10
11
jobs :
11
12
build_wheels :
12
- name : Build wheels on ${{ matrix.os }}
13
+ name : Build wheels for ${{ matrix.name }}
13
14
runs-on : ${{ matrix.os }}
14
15
strategy :
15
16
matrix :
16
17
include :
17
- - name : linux
18
+ - name : linux-amd
18
19
os : ubuntu-24.04
19
20
- name : linux-arm
20
21
os : ubuntu-24.04-arm
33
34
34
35
- name : Build wheels
35
36
run : python -m cibuildwheel --output-dir wheelhouse
37
+ env :
38
+ CIBW_MANYLINUX_X86_64_IMAGE : " manylinux_2_28"
39
+ CIBW_MANYLINUX_AARCH64_IMAGE : " manylinux_2_28"
40
+ CIBW_MANYLINUX_PYPY_X86_64_IMAGE : " manylinux_2_28"
41
+ CIBW_MANYLINUX_PYPY_AARCH64_IMAGE : " manylinux_2_28"
36
42
37
43
- uses : actions/upload-artifact@v4
38
44
with :
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ if [ "$CIBUILDWHEEL" = "1" ]; then
69
69
yum install openssl-devel -y
70
70
else
71
71
yum install perl-IPC-Cmd -y
72
+ yum install perl-Pod-Html -y
72
73
fi
73
74
elif [ -f /sbin/apk ]; then
74
75
apk add wget
You can’t perform that action at this time.
0 commit comments