We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8075d1 commit 195cc59Copy full SHA for 195cc59
1 file changed
.github/workflows/build-and-release.yaml
@@ -48,7 +48,10 @@ jobs:
48
CIBW_REPAIR_WHEEL_COMMAND: ""
49
# Linux needs auditwheel repair so manylinux and musllinux wheels are
50
# published with distinct platform tags instead of generic linux tags.
51
- CIBW_REPAIR_WHEEL_COMMAND_LINUX: "auditwheel repair -w {dest_dir} {wheel}"
+ CIBW_REPAIR_WHEEL_COMMAND_LINUX: "LD_LIBRARY_PATH=/project/llama_cpp/lib auditwheel repair -w {dest_dir} {wheel}"
52
+ # The release wheel is tagged py3-none, so one build per platform
53
+ # covers all supported Python versions and avoids duplicate names.
54
+ CIBW_BUILD: "cp38-*"
55
# Skip cibuildwheel's default i686 sidecar and keep Linux release
56
# wheels on a portable x86_64 CPU baseline.
57
CIBW_ARCHS_LINUX: "auto64"
0 commit comments