We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 195cc59 commit d2bcbacCopy full SHA for d2bcbac
1 file changed
.github/workflows/build-and-release.yaml
@@ -51,10 +51,13 @@ jobs:
51
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-*"
+ CIBW_BUILD_LINUX: "cp38-*"
55
+ CIBW_BUILD_MACOS: "cp39-*"
56
+ CIBW_BUILD_WINDOWS: "cp39-*"
57
# Skip cibuildwheel's default i686 sidecar and keep Linux release
58
# wheels on a portable x86_64 CPU baseline.
59
CIBW_ARCHS_LINUX: "auto64"
60
+ CIBW_ARCHS_WINDOWS: "AMD64"
61
CIBW_ENVIRONMENT_LINUX: CMAKE_ARGS="-DGGML_NATIVE=off"
62
# Keep macOS release wheels on a portable CPU baseline instead of
63
# inheriting the hosted runner's native flags.
0 commit comments