File tree 3 files changed +10
-82
lines changed
3 files changed +10
-82
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -35,13 +35,15 @@ jobs:
35
35
CIBW_BEFORE_ALL : sh build.sh
36
36
CIBW_ENVIRONMENT : LIBGIT2_VERSION=1.7.1 LIBSSH2_VERSION=1.11.0 OPENSSL_VERSION=3.1.3 LIBGIT2=/project/ci
37
37
CIBW_ENVIRONMENT_MACOS : LIBGIT2_VERSION=1.7.1 LIBSSH2_VERSION=1.11.0 OPENSSL_VERSION=3.1.3 LIBGIT2=/Users/runner/work/pygit2/pygit2/ci
38
- CIBW_SKIP : " pp3*"
38
+ CIBW_SKIP : " pp3* *manylinux* cp36* cp37* cp38* cp39* cp310* cp311*"
39
+ CIBW_BUILD : " cp312-musllinux_x86_64"
39
40
CIBW_MANYLINUX_AARCH64_IMAGE : " manylinux2014"
40
41
CIBW_MANYLINUX_X86_64_IMAGE : " manylinux2014"
41
- CIBW_REPAIR_WHEEL_COMMAND_LINUX : " LD_LIBRARY_PATH=/project/ci/lib64 auditwheel repair -w {dest_dir} {wheel}"
42
+ # CIBW_REPAIR_WHEEL_COMMAND_LINUX: "LD_LIBRARY_PATH=/project/ci/lib64 auditwheel repair -w {dest_dir} {wheel}"
43
+ CIBW_REPAIR_WHEEL_COMMAND_LINUX : " LD_LIBRARY_PATH=/project/ci/lib auditwheel repair -w {dest_dir} {wheel}"
42
44
CIBW_REPAIR_WHEEL_COMMAND_MACOS : " DYLD_LIBRARY_PATH=/Users/runner/work/pygit2/pygit2/ci/lib delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel}"
43
45
CIBW_ARCHS_MACOS : universal2
44
- CIBW_ARCHS_LINUX : x86_64 aarch64
46
+ CIBW_ARCHS_LINUX : x86_64 # aarch64
45
47
46
48
- uses : actions/upload-artifact@v3
47
49
with :
Original file line number Diff line number Diff line change @@ -70,6 +70,11 @@ if [ "$CIBUILDWHEEL" = "1" ]; then
70
70
else
71
71
yum install perl-IPC-Cmd -y
72
72
fi
73
+ elif [ -f /sbin/apk ]; then
74
+ apk add wget
75
+ if [ -z " $OPENSSL_VERSION " ]; then
76
+ apk add openssl-dev
77
+ fi
73
78
fi
74
79
rm -rf ci
75
80
mkdir ci || true
You can’t perform that action at this time.
0 commit comments